:root {
  --bg: #07080c;
  --bg-soft: #0d1017;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f6fa;
  --text-soft: #b8c0d0;
  --muted: #6b7589;
  --accent: #f97316;
  --accent-soft: #fb923c;
  --accent-glow: rgba(249, 115, 22, 0.28);
  --accent-2: #ef4444;
  --accent-2-glow: rgba(239, 68, 68, 0.2);
  --danger: #ff6b6b;
  --warning: #f5c542;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.24);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.5);
  --radius-sm: 999px;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  overscroll-behavior: none;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(249, 115, 22, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(239, 68, 68, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(99, 102, 241, 0.05), transparent 50%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 20%, transparent 75%);
}

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

/* Hide scrollbars globally — WebKit, Firefox, legacy Edge/IE */
html,
body,
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  background: transparent;
}

*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-track {
  display: none;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn,
.feed-tab,
.token-open-btn,
.buy-fank-btn,
[data-open-hl-warning],
[data-close-hl-warning],
.launch-platform-link,
.launch-modal-close,
.site-footer-x,
[data-open-launch],
[data-close-launch],
[data-close-modal] {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

button:focus,
.btn:focus {
  outline: none;
}

button:focus-visible,
.btn:focus-visible,
.feed-tab:focus-visible,
.launch-platform-link:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 2px;
}

.container {
  max-width: var(--max);
  width: 92%;
  margin: 0 auto;
}

/* ── Header / Nav ── */

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-text {
  font-family: var(--font-pixel);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f97316 0%, #dc2626 100%);
  box-shadow: 0 0 24px var(--accent-glow);
  font-size: 13px;
  color: #fff;
}

.chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: rgba(249, 115, 22, 0.08);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-x-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.nav-x-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transform: translateY(-1px);
}

.nav-x-link i {
  font-size: 14px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  background: var(--bg-elevated);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-launch {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #ef4444 100%);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-launch:hover {
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-ghost-line {
  background: transparent;
  color: var(--text-soft);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.btn-ghost-line:hover {
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn.primary:hover {
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
}

.btn.ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--border);
  color: var(--muted);
}

.btn.ghost:hover {
  color: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.06);
}

.btn.sm {
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 8px;
}

/* ── Marquee ── */

.marquee-section {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 49;
}

.marquee-bar {
  --marquee-height: 48px;
  display: flex;
  align-items: center;
  height: var(--marquee-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.65);
  backdrop-filter: blur(20px);
}

.marquee-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: var(--marquee-height);
  padding: 0 16px;
  border-right: 1px solid var(--border);
  color: var(--warning);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: rgba(251, 191, 36, 0.06);
  flex-shrink: 0;
}

.marquee-label i {
  font-size: 12px;
}

.marquee-track {
  overflow: hidden;
  flex: 1;
  position: relative;
  height: var(--marquee-height);
  min-height: var(--marquee-height);
  max-height: var(--marquee-height);
}

.marquee-track::before,
.marquee-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 11, 16, 0.95), transparent);
}

.marquee-track::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 11, 16, 0.95), transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  height: var(--marquee-height);
  min-height: var(--marquee-height);
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}

.marquee-content.is-reordering {
  animation-play-state: paused;
}

.marquee-item.is-flipping {
  position: relative;
  z-index: 3;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-item.is-entering {
  opacity: 0;
  transform: scale(0.94);
  animation: market-fade-in 0.42s ease forwards;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--marquee-height);
  padding: 0 16px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.marquee-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.marquee-logo {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border);
}

.marquee-logo.fallback {
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-soft);
  font-size: 10px;
}

.marquee-name {
  font-weight: 600;
  font-size: 12px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-soft);
}

.marquee-symbol {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.marquee-stat {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
}

.marquee-stat i {
  color: var(--muted);
  font-size: 9px;
  opacity: 0.7;
}

.marquee-stat .count-value {
  color: var(--text-soft);
  font-weight: 600;
}

/* ── Landing ── */

.landing {
  position: relative;
  padding: clamp(40px, 7vw, 72px) 0 clamp(28px, 4vw, 40px);
  overflow: hidden;
}

.landing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.landing-glow-a {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  top: -120px;
  left: -80px;
  background: rgba(249, 115, 22, 0.18);
}

.landing-glow-b {
  width: min(360px, 55vw);
  height: min(360px, 55vw);
  top: 20%;
  right: -60px;
  background: rgba(239, 68, 68, 0.1);
}

.landing-inner {
  position: relative;
  z-index: 1;
}

.landing-copy {
  max-width: none;
}

.landing-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: 4px;
}

.landing-hero-text {
  flex: 1;
  min-width: 0;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2-glow);
  animation: live-pulse 2.4s ease infinite;
  flex-shrink: 0;
}

.landing-title {
  font-size: clamp(40px, 7.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--text);
}

.landing-hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 8px;
}

.landing-hero-logo-glow {
  position: absolute;
  inset: -28% -22%;
  background: radial-gradient(
    ellipse at center,
    rgba(249, 115, 22, 0.38) 0%,
    rgba(251, 146, 60, 0.14) 38%,
    transparent 72%
  );
  filter: blur(22px);
  animation: landing-logo-glow 4.5s ease-in-out infinite;
  pointer-events: none;
}

.landing-hero-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(220px, 28vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(249, 115, 22, 0.4))
    drop-shadow(0 0 40px rgba(239, 68, 68, 0.18));
  animation: landing-logo-float 5s ease-in-out infinite;
}

@keyframes landing-logo-glow {
  0%, 100% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes landing-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.gradient-text {
  display: inline-block;
  margin-top: 0.15em;
  font-family: var(--font-pixel);
  font-size: clamp(36px, 7.6vw, 68px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.05em;
  background: linear-gradient(120deg, #fff 0%, #fdba74 45%, #f87171 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-desc {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 0;
  font-weight: 400;
}

.landing-req {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-left: 14px;
  border-left: 2px solid rgba(245, 197, 66, 0.45);
  line-height: 1.5;
}

.landing-req strong {
  color: var(--text);
  font-weight: 700;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.landing-actions-tail {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.landing-actions .label-short {
  display: none;
}

/* ── New launches rail ── */

.new-launches-section {
  --rail-pad: max(16px, calc((100vw - min(var(--max), 92vw)) / 2));
  padding-top: 24px;
  padding-bottom: 8px;
  overflow: hidden;
}

.new-launches-head {
  margin-bottom: 18px;
}

.new-launches-scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.new-launches-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px var(--rail-pad, 16px) 14px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--rail-pad, 16px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.new-launch-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.new-launch-card:hover {
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transform: translateY(-1px);
}

.new-launch-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.new-launch-logo-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border);
}

.new-launch-card-head img.new-launch-logo,
.new-launch-logo-wrap img,
.new-launch-logo {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: inset 0 0 0 1px var(--border);
}

.new-launch-logo.fallback {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 18px;
}

.new-launch-meta {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.new-launch-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-launch-symbol {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-soft);
}

.new-launch-about {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.new-launch-rows {
  display: grid;
  gap: 10px;
}

.new-launch-row {
  display: grid;
  gap: 4px;
}

.new-launch-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.new-launch-value-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.new-launch-value {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-launch-copy {
  flex-shrink: 0;
  gap: 4px;
  padding: 6px 8px;
  font-size: 11px;
}

.new-launch-copy.is-copied {
  color: var(--accent-2);
}

.new-launch-view {
  flex-shrink: 0;
  gap: 5px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.new-launch-view i {
  font-size: 10px;
  opacity: 0.85;
}

.new-launch-trade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 2px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #dc2626 100%);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.new-launch-trade:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.38);
  filter: brightness(1.05);
}

.new-launch-trade i {
  font-size: 11px;
  opacity: 0.92;
}

.new-launch-trade.is-disabled,
.new-launch-pending {
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
}

.new-launch-trade.is-disabled {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
}

.buy-fank-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #dc2626 100%);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  overflow: visible;
}

button.buy-fank-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.buy-fank-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.38);
  filter: brightness(1.05);
}

.buy-fank-btn-icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: visible;
}

.buy-fank-btn-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.buy-fank-btn-ext {
  font-size: 11px;
  opacity: 0.92;
}

.buy-fank-btn--float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s ease;
}

.buy-fank-btn--float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.buy-fank-btn--landing {
  width: auto;
  margin-top: 0;
  padding: 12px 14px;
  font-size: 13px;
}

.buy-fank-btn--landing .buy-fank-btn-icon-wrap {
  width: 18px;
  height: 18px;
}

.buy-fank-btn--landing .buy-fank-btn-icon {
  width: 36px;
  height: 36px;
}

.buy-fank-btn--footer {
  padding: 11px 16px;
  font-size: 12px;
}

.new-launch-card.is-pending {
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.22);
}

.new-launches-empty {
  text-align: center;
  padding: 36px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border);
}

.new-launches-empty h3 {
  font-size: 18px;
  margin: 12px 0 6px;
}

.new-launches-empty p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.stat-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  padding: 8px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat-value {
  display: block;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}

.stat-value .count-value {
  font-weight: inherit;
  font-size: inherit;
}

.stat-value-feed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stat-feed-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border-strong);
}

#statFeedName {
  font-size: inherit;
  font-weight: inherit;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* legacy hero hooks removed */

.live-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

/* ── Sections ── */

section {
  padding: 56px 0;
}

.tokens-section {
  padding-top: 16px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  font-family: var(--font-pixel);
  font-size: clamp(13px, 2.4vw, 18px);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 12px;
  font-weight: 400;
}

.section-title p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.feed-tabs {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.feed-tab {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feed-tab:hover {
  color: var(--text-soft);
}

.feed-tab.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.feed-tab-logo {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-title {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

/* ── Token Table ── */

.token-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.token-table th,
.token-table td {
  text-align: left;
}

.token-table-wrap {
  border: none;
  border-radius: 0;
  overflow: auto;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.token-table-wrap.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.token-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px 12px;
}

.token-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.token-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.token-table tbody tr {
  transition: background 0.15s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.token-table tbody tr:last-child td {
  border-bottom: none;
}

.token-table tbody tr.is-flipping {
  position: relative;
  z-index: 2;
}

.token-table tbody tr.is-entering {
  opacity: 0;
  transform: translateY(12px);
  animation: market-fade-in 0.42s ease forwards;
}

.token-table tbody tr.is-leaving {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.token-table .rank {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  width: 48px;
  transition: color 0.3s ease;
}

.token-table .rank.rank-top {
  color: var(--muted);
}

.token-table .rank.rank-top-1 {
  animation: rank-neon-gold 2.2s ease-in-out infinite;
}

.token-table .rank.rank-top-2 {
  animation: rank-neon-silver 2.4s ease-in-out infinite;
}

.token-table .rank.rank-top-3 {
  animation: rank-neon-bronze 2.6s ease-in-out infinite;
}

@keyframes rank-neon-gold {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(251, 191, 36, 0.25),
      0 0 6px rgba(251, 191, 36, 0.15);
  }
  50% {
    text-shadow:
      0 0 6px rgba(251, 191, 36, 0.55),
      0 0 14px rgba(251, 191, 36, 0.35),
      0 0 22px rgba(251, 191, 36, 0.18);
  }
}

@keyframes rank-neon-silver {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(148, 163, 184, 0.25),
      0 0 6px rgba(148, 163, 184, 0.15);
  }
  50% {
    text-shadow:
      0 0 6px rgba(148, 163, 184, 0.55),
      0 0 14px rgba(186, 198, 214, 0.35),
      0 0 22px rgba(148, 163, 184, 0.18);
  }
}

@keyframes rank-neon-bronze {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(217, 119, 6, 0.25),
      0 0 6px rgba(217, 119, 6, 0.15);
  }
  50% {
    text-shadow:
      0 0 6px rgba(217, 119, 6, 0.55),
      0 0 14px rgba(245, 158, 11, 0.35),
      0 0 22px rgba(217, 119, 6, 0.18);
  }
}

.token-table .rank.rank-shift-up {
  color: var(--accent-2);
}

.token-table .rank.rank-shift-down {
  color: var(--danger);
}

.count-value {
  display: inline-block;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.count-value.count-trend-up,
.count-value.count-flash-up {
  color: var(--accent-2);
}

.count-value.count-trend-down,
.count-value.count-flash-down {
  color: var(--danger);
}

.cell-change .count-value.count-trend-up,
.cell-change .count-value.count-flash-up {
  color: var(--accent-2);
}

.cell-change .count-value.count-trend-down,
.cell-change .count-value.count-flash-down {
  color: var(--danger);
}

@keyframes market-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.token-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.token-cell {
  min-width: 220px;
}

.token-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.15s ease;
}

.token-link:hover {
  opacity: 0.85;
}

.token-logo {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border);
  display: block;
}

.token-logo.fallback {
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-soft);
  font-size: 13px;
}

.token-meta {
  display: grid;
  gap: 2px;
}

.token-meta strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.token-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.mono.highlight {
  color: var(--accent-soft);
  font-weight: 600;
}

.mono.muted {
  color: var(--muted);
}

.change.up {
  color: var(--accent-soft);
}

.change.down {
  color: var(--danger);
}

.change.neutral {
  color: var(--muted);
}

.cell-change.up .count-value,
.cell-change.down .count-value {
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.cell-change.up .count-value {
  background: rgba(249, 115, 22, 0.08);
}

.cell-change.down .count-value {
  background: rgba(248, 113, 113, 0.08);
}

.action {
  width: 48px;
}

/* ── Empty State ── */

.empty-state {
  text-align: center;
  padding: 64px 24px;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  color: var(--accent-soft);
  font-size: 20px;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
}

/* ── Info Cards ── */

.info-section {
  padding-top: 24px;
  padding-bottom: 48px;
}

.info-header {
  margin-bottom: 36px;
}

.info-header h2 {
  font-family: var(--font-pixel);
  font-size: clamp(12px, 2.2vw, 17px);
  letter-spacing: 0.04em;
  line-height: 1.55;
  font-weight: 400;
}

.info-lead {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.feature-item {
  position: relative;
  padding-top: 8px;
}

.feature-num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
  opacity: 0.7;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── How it works ── */

.how-section {
  padding: 48px 0 80px;
  border-top: 1px solid var(--line);
}

.how-steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.how-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border);
}

.how-step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-soft);
  background: rgba(249, 115, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

.how-step h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.how-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.how-fees {
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(239, 68, 68, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px var(--border);
}

.how-fees-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.how-fees-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 17px;
  color: var(--accent-2);
  background: rgba(239, 68, 68, 0.1);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.18);
}

.how-fees-head h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.how-fees-head p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.fee-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.fee-split-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px var(--border);
}

.fee-split-pct {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.fee-split-card--creator .fee-split-pct {
  color: var(--accent-soft);
}

.fee-split-card--community .fee-split-pct {
  color: var(--accent-2);
}

.fee-split-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fee-split-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fee-example {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
}

.fee-example-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.fee-example p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.how-fees-notes {
  list-style: none;
  display: grid;
  gap: 8px;
}

.how-fees-notes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.how-fees-notes i {
  color: var(--accent-2);
  margin-top: 2px;
  font-size: 12px;
}

.how-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── Footer ── */

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 42%),
    rgba(4, 6, 10, 0.55);
}

.site-footer-inner {
  padding: clamp(36px, 5vw, 52px) 0 clamp(22px, 3vw, 28px);
}

.site-footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-brand-block {
  max-width: 420px;
}

.site-footer-brand > span {
  font-family: var(--font-pixel);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity 0.15s ease;
}

.site-footer-brand:hover {
  opacity: 0.85;
}

.site-footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.site-footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 38ch;
}

.site-footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
}

.site-footer-location i {
  font-size: 11px;
  color: var(--accent-soft);
}

.site-footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer-x {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.site-footer-x:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transform: translateY(-1px);
}

.site-footer-x i {
  font-size: 14px;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: clamp(18px, 2.5vw, 24px);
}

.site-footer-copy,
.site-footer-meta {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* ── Error Page ── */

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 0;
}

.error-page h1 {
  font-size: clamp(48px, 10vw, 96px);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Token Modal ── */

.token-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-top: max(20px, env(safe-area-inset-top));
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.token-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.token-modal.is-closing {
  opacity: 0;
  pointer-events: none;
}

.token-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.token-modal.is-open .token-modal-backdrop {
  opacity: 1;
}

.token-modal-panel {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: min(84vh, 920px);
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.28s ease;
}

.token-modal.is-open .token-modal-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.token-modal.is-closing .token-modal-panel {
  transform: scale(0.96) translateY(48px);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.8, 0.2),
    opacity 0.28s ease;
}

.token-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.token-modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.token-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(249, 115, 22, 0.08);
  flex-shrink: 0;
}

.token-modal-badge.is-bankr {
  color: var(--warning);
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.08);
}

.token-modal-title-wrap {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.token-modal-title-wrap strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.token-modal-title-wrap span {
  color: var(--muted);
  font-size: 11px;
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.token-modal-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.token-modal-close {
  width: 36px;
  padding-inline: 0;
}

.token-modal-body {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #0a0d12;
}

.token-modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.token-modal-body.is-loaded iframe {
  opacity: 1;
}

.token-modal-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.06), transparent 55%),
    rgba(10, 13, 18, 0.96);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.token-modal-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.token-modal-loader p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.loader-orbit {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.loader-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: loader-spin 1.1s linear infinite;
}

.loader-orbit span:nth-child(1) {
  border-top-color: var(--accent);
  animation-delay: 0s;
}

.loader-orbit span:nth-child(2) {
  inset: 7px;
  border-right-color: var(--accent-2);
  animation-delay: -0.25s;
  animation-direction: reverse;
}

.loader-orbit span:nth-child(3) {
  inset: 14px;
  border-bottom-color: #818cf8;
  animation-delay: -0.5s;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

.token-open-btn {
  cursor: pointer;
}

.is-refreshing i {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    padding: 10px 0;
    gap: 10px;
  }

  .nav-x-link {
    margin-left: auto;
  }

  .hero-top {
    flex-direction: column;
    gap: 20px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fee-split-grid {
    grid-template-columns: 1fr;
  }

  .how-fees-head {
    flex-direction: column;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .feed-tabs {
    width: 100%;
    justify-content: center;
  }

  .marquee-label span {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: 90%;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .stat-item:first-child {
    padding-top: 12px;
  }

  .stat-value {
    font-size: 28px;
  }

  .landing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .landing-actions-tail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .landing-actions .label-long {
    display: none;
  }

  .landing-actions .label-short {
    display: inline;
  }

  .buy-fank-btn--landing {
    width: 100%;
  }

  .new-launch-card {
    flex-basis: min(260px, 88vw);
  }

  .landing-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .gradient-text {
    font-size: clamp(28px, 8.4vw, 48px);
  }

  .brand-text {
    font-size: 9px;
  }

  .landing-hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
  }

  .landing-hero-logo-wrap {
    align-self: center;
    margin: 0 auto;
    padding: 12px;
  }

  .landing-hero-logo {
    width: min(180px, 52vw);
  }

  .marquee-name {
    max-width: 72px;
  }

  .marquee-stat:last-child {
    display: none;
  }

  .site-footer-main {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-actions {
    align-items: flex-start;
    width: 100%;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .token-modal {
    padding: 12px 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .token-modal-panel {
    width: 100%;
    max-width: none;
    height: min(90vh, 100%);
    border-radius: var(--radius);
  }

  .token-modal-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }

  .token-modal-brand {
    flex: 1 1 100%;
    min-width: 0;
    order: 1;
  }

  .token-modal-actions {
    flex: 1 1 100%;
    order: 2;
    justify-content: flex-end;
  }

  .token-modal-badge {
    min-width: auto;
    flex-shrink: 0;
  }

  .token-modal-link .link-label {
    display: none;
  }
}

/* ── Launch modal ── */

@keyframes hl-warning-pop-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }

  65% {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hl-warning-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.hl-warning-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hl-warning-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.76);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.hl-warning-modal-panel {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(249, 115, 22, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 20%),
    rgba(10, 12, 18, 0.98);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(249, 115, 22, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.9);
}

.hl-warning-modal.is-open .hl-warning-modal-panel {
  animation: hl-warning-pop-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hl-warning-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(145deg, #f97316 0%, #ef4444 55%, #dc2626 100%);
  box-shadow:
    0 10px 28px rgba(249, 115, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hl-warning-modal-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(249, 115, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.22);
}

.hl-warning-modal-panel h2 {
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text);
}

.hl-warning-modal-lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 18px;
  text-align: left;
}

.hl-warning-modal-lead strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.hl-warning-modal-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  text-align: left;
}

.hl-warning-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px var(--border);
}

.hl-warning-modal-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  color: var(--accent-soft);
}

.hl-warning-modal-dismiss {
  width: 100%;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.launch-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.launch-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 32px);
  max-height: calc(100svh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 32px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 18%),
    rgba(10, 12, 18, 0.98);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(249, 115, 22, 0.06);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.launch-modal.is-open .launch-modal-panel {
  transform: translateY(0) scale(1);
}

.launch-sheet-handle {
  display: none;
}

.launch-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 18px 22px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.launch-modal-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.launch-modal-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(145deg, #f97316, #ef4444);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.28);
}

.launch-modal-titles {
  min-width: 0;
}

.launch-modal-kicker {
  display: block;
  font-family: var(--font-pixel);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--accent-soft);
  margin-bottom: 6px;
  line-height: 1.45;
}

.launch-modal-header h2 {
  font-size: clamp(20px, 4.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.launch-modal-sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.launch-modal-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.launch-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: scale(1.04);
}

.launch-modal-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.launch-form {
  padding: 14px 22px 6px;
}

.launch-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.launch-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 10px;
  align-items: start;
}

.launch-field {
  display: grid;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.launch-field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.field-optional {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
}

.launch-field input,
.launch-field textarea {
  width: 100%;
  min-height: 40px;
  border: none;
  border-radius: 10px;
  padding: 0 12px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.18s ease, background 0.18s ease;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}

.launch-field textarea {
  min-height: 52px;
  padding: 9px 12px;
  line-height: 1.4;
}

.launch-field--ticker input {
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 8px;
}

.launch-field input::placeholder,
.launch-field textarea::placeholder {
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: rgba(107, 117, 137, 0.85);
}

.launch-field input:focus,
.launch-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 0 0 1px rgba(249, 115, 22, 0.5),
    0 0 0 3px rgba(249, 115, 22, 0.1);
}

.launch-field small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin-top: -2px;
}

.launch-logo-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.launch-logo-input:focus-within {
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 0 0 1px rgba(249, 115, 22, 0.5),
    0 0 0 3px rgba(249, 115, 22, 0.1);
}

.launch-logo-input input {
  flex: 1;
  min-width: 0;
  min-height: 32px;
  padding: 0 6px 0 2px;
  background: transparent;
  box-shadow: none;
}

.launch-logo-input input:focus {
  box-shadow: none;
  background: transparent;
}

.launch-preview {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.launch-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.launch-alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.launch-alert.is-error {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.08);
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.22);
}

.launch-progress {
  margin-top: 16px;
}

.launch-progress-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 10px;
}

.launch-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316, #ef4444);
  transition: width 0.4s ease;
}

.launch-progress p {
  font-size: 12px;
  color: var(--muted);
}

.launch-result {
  margin-top: 4px;
}

.launch-result-pending {
  padding: 18px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.05);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.14);
}

.launch-result-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.launch-result-status h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.launch-result-status p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

.launch-result-spinner {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.15);
  border-top-color: var(--accent);
  flex-shrink: 0;
  animation: launchSpin 0.75s linear infinite;
}

@keyframes launchSpin {
  to { transform: rotate(360deg); }
}

.launch-result-meta {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-result-meta div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
}

.launch-result-meta dt {
  color: var(--muted);
  font-weight: 600;
}

.launch-result-meta dd {
  color: var(--text-soft);
  text-align: right;
  word-break: break-all;
}

.launch-result-meta dd.mono {
  font-family: var(--mono);
  font-size: 11px;
}

.launch-result-success {
  padding: 4px 0 8px;
}

.launch-success-header {
  margin-bottom: 16px;
}

.launch-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(239, 68, 68, 0.08);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.launch-success-badge i {
  font-size: 13px;
}

.launch-success-sub {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.launch-success-token {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.launch-success-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.launch-success-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.launch-success-logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 20px;
}

.launch-success-token-meta {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.launch-success-token-meta strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.launch-success-token-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.launch-success-symbol {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.08);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

.launch-success-chain {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.launch-success-details {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.launch-success-detail {
  display: grid;
  gap: 6px;
}

.launch-success-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.launch-success-contract {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.launch-success-contract code {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  word-break: break-all;
  line-height: 1.45;
}

.launch-copy-btn {
  flex-shrink: 0;
  gap: 6px;
}

.launch-copy-btn.is-copied {
  color: var(--accent-2);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.08);
}

.launch-success-tx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-soft);
  word-break: break-all;
  transition: color 0.15s ease;
}

.launch-success-tx:hover {
  color: var(--text);
}

.launch-success-platforms {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.launch-success-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.launch-platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s ease, transform 0.15s ease;
}

.launch-platform-link:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.launch-platform-link img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.launch-platform-link span {
  flex: 1;
}

.launch-platform-ext {
  font-size: 10px;
  color: var(--muted);
}

.launch-success-close {
  width: 100%;
}

.launch-modal-footer {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  flex-shrink: 0;
  padding:
    14px 22px
    calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.launch-modal-footer[hidden] {
  display: none !important;
}

.launch-btn-secondary {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--text-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.launch-btn-secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.launch-btn-primary {
  flex: 1;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.launch-form--success .launch-form-fields {
  display: none;
}

.launch-modal--result .launch-modal-header {
  padding-bottom: 12px;
}

.launch-modal--result .launch-form {
  padding-top: 8px;
}

@media (max-width: 620px) {
  .launch-modal {
    align-items: flex-end;
    padding: 0;
  }

  .launch-modal-panel {
    width: 100%;
    max-height: min(92dvh, calc(100svh - env(safe-area-inset-top, 0px)));
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    transform: translateY(100%);
  }

  .launch-modal.is-open .launch-modal-panel {
    transform: translateY(0);
  }

  .launch-sheet-handle {
    display: block;
    width: 36px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
  }

  .launch-modal-header {
    padding: 14px 18px 14px;
    border-bottom: none;
  }

  .launch-modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 15px;
  }

  .launch-form {
    padding: 10px 18px 4px;
  }

  .launch-form-fields {
    gap: 12px;
  }

  .launch-form-row {
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 8px;
  }

  .launch-field input,
  .launch-field textarea {
    font-size: 16px;
  }

  .launch-field--ticker input {
    font-size: 14px;
  }

  .launch-modal-footer {
    flex-direction: column-reverse;
    gap: 8px;
    padding:
      12px 18px
      calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .launch-btn-secondary,
  .launch-btn-primary {
    width: 100%;
    min-height: 50px;
  }

  .launch-btn-secondary {
    min-width: 0;
  }

  .launch-success-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .launch-modal-brand {
    gap: 10px;
  }

  .launch-modal-header h2 {
    font-size: 19px;
  }
}
