/* Start launchpad — extends launcher.css + /styles.css */

:root {
  --start-tween-fast: 180ms;
  --start-tween-mid: 240ms;
  --start-tween-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.start-main {
  padding-block: 0 3rem;
}

.start-page .launcher-notices {
  padding-bottom: 0.38rem;
}

.start-page .launcher-dev-notice__text {
  padding: 0.32rem 0.72rem;
  border-color: rgba(255, 159, 46, 0.28);
  border-radius: 0.52rem;
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.085), rgba(234, 96, 18, 0.045));
  font-size: 0.72rem;
  line-height: 1.25;
}

.start-hero {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  margin-bottom: 0.52rem;
  padding: 0.2rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.start-page .launcher-hero.start-hero {
  border: none;
  background: transparent;
  box-shadow: none;
}

.start-vibe-guide {
  margin-bottom: 0.75rem;
}

.start-vibe-guide__steps {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.start-vibe-guide__steps li + li {
  margin-top: 0.45rem;
}

.start-vibe-guide__steps a {
  color: var(--accent);
}

.start-vibe-guide__steps strong {
  color: var(--text);
}

.start-hero h1 {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.025em;
}

.start-feed-liquidity-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 1.82rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(79, 195, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition:
    border-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease);
}

.start-feed-liquidity-toggle:hover {
  border-color: rgba(79, 195, 255, 0.32);
  color: var(--text);
}

.start-feed-liquidity-toggle:has(input:checked) {
  border-color: rgba(20, 241, 149, 0.35);
  background: rgba(20, 241, 149, 0.08);
  color: #c8ffe8;
}

.start-feed-liquidity-toggle input {
  width: 0.92rem;
  height: 0.92rem;
  margin: 0;
  accent-color: #14f195;
}

.start-feed-filters {
  position: relative;
  flex: 0 0 auto;
}

.start-feed-filters summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.82rem;
  padding: 0.26rem 0.62rem;
  border: 1px solid rgba(79, 195, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.018);
  color: #b8ecff;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.start-feed-filters summary::-webkit-details-marker {
  display: none;
}

.start-feed-filters summary::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.65rem;
  opacity: 0.75;
}

.start-feed-filters[open] summary::after {
  transform: rotate(180deg);
}

.start-feed-filters__body {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 35;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem;
  border: 1px solid rgba(79, 195, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(10, 16, 26, 0.96), rgba(7, 10, 18, 0.9)),
    rgba(7, 10, 18, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.start-tabs {
  flex-wrap: nowrap;
  max-width: none;
  margin: 0 0 0.52rem;
  padding: 0.22rem;
  gap: 0.26rem;
  border-color: rgba(79, 195, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.start-tabs__link {
  text-decoration: none;
}

.start-tabs .launcher-tabs__btn {
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  white-space: nowrap;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
  will-change: transform;
}

.start-tab-panel[hidden] {
  display: none !important;
}

.start-tab-panel.is-active {
  animation: startFadeIn 0.35s ease;
}

.start-page .btn,
.token-page .btn {
  min-height: 2.25rem;
  padding: 0.48rem 0.82rem;
  font-size: 0.84rem;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease),
    opacity var(--start-tween-fast) var(--start-tween-ease);
  will-change: transform;
  transform: translateZ(0);
}

.start-page .btn--small,
.token-page .btn--small {
  min-height: 1.95rem;
  padding: 0.34rem 0.62rem;
  font-size: 0.76rem;
}

.start-page .btn--primary,
.token-page .btn--primary {
  background: linear-gradient(135deg, rgba(16, 174, 119, 0.86), rgba(31, 116, 156, 0.9));
  box-shadow: 0 8px 24px rgba(20, 241, 149, 0.12);
}

.start-page .btn--primary:hover,
.token-page .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(20, 241, 149, 0.16);
}

@keyframes startFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Feed ——— */

.start-feed-toolbar-card {
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    border-color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
}

.card.start-feed-toolbar-card.start-premium-surface--soft,
.card.start-form-card.start-premium-surface--soft,
.card.start-wallet-card.start-premium-surface--soft,
.card.start-launch-card.start-premium-surface,
.card.start-portfolio-header.start-premium-surface--soft,
.card.start-portfolio-rewards.start-premium-surface--soft,
.card.start-portfolio-empty.start-premium-surface--soft {
  backdrop-filter: blur(10px);
}

.start-feed-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.start-feed-toolbar__row--main {
  justify-content: space-between;
}

.start-feed-toolbar__row--filters {
  justify-content: space-between;
  padding-top: 0.12rem;
  border-top: 1px solid rgba(79, 195, 255, 0.1);
}

.start-feed-sort--primary {
  flex: 0 0 auto;
}

.start-feed-search {
  flex: 1 1 16rem;
  width: auto;
  min-width: 12rem;
}

.start-feed-search .start-input {
  min-height: 2.15rem;
  padding-block: 0.42rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.start-feed-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.start-feed-source-toggle,
.start-feed-stage-toggle {
  align-self: flex-start;
  width: fit-content;
  padding: 0.18rem;
  gap: 0;
  border: 1px solid rgba(79, 195, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.start-feed-stage-toggle {
  border-color: rgba(255, 159, 46, 0.22);
  background: rgba(255, 159, 46, 0.03);
}

.start-feed-stage-toggle .start-feed-sort__btn.is-active {
  background: linear-gradient(135deg, rgba(255, 159, 46, 0.2), rgba(234, 96, 18, 0.12));
  color: #ffe2b8;
  box-shadow: inset 0 0 0 1px rgba(255, 159, 46, 0.18);
}

.start-feed-filters__body {
  display: grid;
  gap: 0.55rem;
  width: min(25rem, calc(100vw - 2rem));
}

.start-feed-filters[open] {
  flex-basis: 100%;
}

.start-feed-filters .start-feed-filters__body {
  position: static;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.55rem;
  box-shadow: none;
  background:
    linear-gradient(145deg, rgba(10, 16, 26, 0.72), rgba(7, 10, 18, 0.62)),
    rgba(255, 255, 255, 0.018);
}

.start-feed-sort__btn {
  margin: 0;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
  will-change: transform;
  transform: translateZ(0);
}

.start-feed-source-toggle .start-feed-sort__btn,
.start-feed-stage-toggle .start-feed-sort__btn {
  border: 0;
  min-width: 5.8rem;
  padding: 0.36rem 0.72rem;
  background: transparent;
}

.start-feed-stage-toggle .start-feed-sort__btn {
  min-width: 5.2rem;
}

.start-feed-sort__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 195, 255, 0.35);
  color: var(--text);
}

.start-feed-sort__btn.is-active {
  border-color: rgba(79, 195, 255, 0.45);
  background: rgba(79, 195, 255, 0.1);
  color: #b8ecff;
}

.start-feed-source-toggle .start-feed-sort__btn.is-active {
  background: linear-gradient(135deg, rgba(79, 195, 255, 0.18), rgba(20, 241, 149, 0.1));
  color: #eaf4ff;
  box-shadow: inset 0 0 0 1px rgba(79, 195, 255, 0.16);
}

.start-feed-sort__btn:disabled,
.start-feed-sort__btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
}

.start-feed-status {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.start-feed-status.is-error {
  color: #ffb4b4;
}

/* ——— Portfolio ——— */

.start-portfolio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  padding: 0.82rem 0.92rem;
}

.start-portfolio-header__main {
  min-width: 0;
}

.start-portfolio-header__title {
  margin: 0 0 0.28rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.start-portfolio-header__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.start-portfolio-header__count {
  flex-shrink: 0;
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(79, 195, 255, 0.18);
  border-radius: 999px;
  background: rgba(79, 195, 255, 0.08);
  color: #b8ecff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.start-portfolio-rewards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
  padding: 0.82rem 0.92rem;
  border-color: rgba(20, 241, 149, 0.18);
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 241, 149, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.start-portfolio-rewards__main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.18rem;
}

.start-portfolio-rewards__label {
  color: rgba(158, 228, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.start-portfolio-rewards__amount {
  color: #f4fbff;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
}

.start-portfolio-rewards__hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.start-portfolio-rewards__hint.is-error {
  color: #ffb4b4;
}

.start-portfolio-grid {
  margin-top: 0.15rem;
}

.start-portfolio-empty {
  margin-top: 0.35rem;
  padding: 1.35rem 1rem 1.15rem;
  text-align: center;
}

.start-portfolio-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(79, 195, 255, 0.16);
  border-radius: 999px;
  background: rgba(79, 195, 255, 0.06);
  color: #9edfff;
  font-size: 1.15rem;
}

.start-portfolio-empty__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.start-portfolio-empty__text {
  margin: 0 auto 0.85rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.start-portfolio-empty__actions {
  display: flex;
  justify-content: center;
}

.start-feed-mobile-controls {
  display: none;
}

.start-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 0.85rem;
}

.start-feed-sentinel {
  height: 1px;
  pointer-events: none;
}

.start-feed-load-more {
  display: block;
  width: 100%;
  margin: 0.85rem 0 0;
}

.start-feed-empty {
  grid-column: 1 / -1;
  margin: 1rem 0;
  text-align: center;
  color: var(--muted);
}

.start-token-card {
  display: flex;
  flex-direction: column;
  position: relative;
  contain: layout paint;
  border: 1px solid rgba(79, 195, 255, 0.18);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 195, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 55% at 0% 110%, rgba(20, 241, 149, 0.06), transparent 58%),
    rgba(255, 255, 255, 0.015);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--start-tween-mid) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease);
  transform: translateZ(0);
}

.start-token-card__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.start-token-card--boosted {
  border-color: rgba(255, 196, 77, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 214, 140, 0.1), rgba(255, 255, 255, 0.02)),
    radial-gradient(ellipse 95% 75% at 50% -25%, rgba(255, 196, 77, 0.24), transparent 62%),
    radial-gradient(ellipse 70% 55% at 100% 110%, rgba(255, 160, 40, 0.1), transparent 58%),
    rgba(18, 12, 4, 0.28);
  animation: start-boost-card-pulse 2.6s ease-in-out infinite;
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 140, 0.16),
    0 0 0 1px rgba(255, 196, 77, 0.24),
    0 0 28px rgba(255, 196, 77, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.start-token-card--boosted::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 220, 120, 0.2),
    rgba(255, 196, 77, 0.95),
    rgba(255, 250, 210, 0.75),
    rgba(255, 140, 20, 0.9),
    rgba(255, 230, 150, 0.55),
    rgba(255, 196, 77, 0.95),
    rgba(255, 220, 120, 0.2)
  );
  background-size: 280% 280%;
  animation: start-boost-gold-shift 3.2s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.start-token-card--boosted .start-token-card__shine {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(24, 14, 4, 0.58)),
    linear-gradient(
      110deg,
      transparent 18%,
      rgba(255, 228, 160, 0.08) 38%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 228, 160, 0.12) 62%,
      transparent 82%
    );
  background-size:
    100% 100%,
    220% 100%;
  background-position:
    0 0,
    120% 0;
  animation: start-boost-shine-sweep 2.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.start-token-card--boosted .start-token-card__symbol {
  border-color: rgba(255, 210, 100, 0.42);
  background: linear-gradient(135deg, rgba(255, 214, 140, 0.18), rgba(255, 160, 40, 0.08));
  color: #fff0cf;
  box-shadow: 0 0 16px rgba(255, 196, 77, 0.12);
}

.start-token-card--boosted:hover {
  border-color: rgba(255, 210, 100, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 140, 0.2),
    0 0 0 1px rgba(255, 196, 77, 0.32),
    0 0 40px rgba(255, 196, 77, 0.22),
    0 20px 48px rgba(0, 0, 0, 0.28);
}

.start-token-card--boosted-max::after {
  content: "NITRO";
  position: absolute;
  top: 0.55rem;
  right: -2.1rem;
  z-index: 4;
  width: 7.2rem;
  padding: 0.22rem 0;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #1a1208;
  background: linear-gradient(135deg, #ffe08a, #ffb347, #ff8c00);
  transform: rotate(32deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.start-token-card__boost-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 100, 0.45);
  background: rgba(24, 16, 4, 0.78);
  color: #ffe7a8;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@keyframes start-boost-gold-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes start-boost-shine-sweep {
  0%,
  100% {
    background-position:
      0 0,
      120% 0;
  }
  50% {
    background-position:
      0 0,
      -120% 0;
  }
}

@keyframes start-boost-card-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 220, 140, 0.16),
      0 0 0 1px rgba(255, 196, 77, 0.24),
      0 0 24px rgba(255, 196, 77, 0.12),
      0 18px 42px rgba(0, 0, 0, 0.24);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 220, 140, 0.22),
      0 0 0 1px rgba(255, 196, 77, 0.34),
      0 0 42px rgba(255, 196, 77, 0.24),
      0 20px 46px rgba(0, 0, 0, 0.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-token-card--boosted,
  .start-token-card--boosted::before,
  .start-token-card--boosted .start-token-card__shine {
    animation: none;
  }

  .start-token-card--boosted::before {
    background: linear-gradient(135deg, rgba(255, 196, 77, 0.75), rgba(255, 220, 140, 0.4));
  }

  .start-token-card--boosted .start-token-card__shine {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(24, 14, 4, 0.58)),
      linear-gradient(120deg, rgba(255, 228, 160, 0.12), transparent 36%);
  }
}

.start-token-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 195, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.3);
}

.start-token-card:active {
  transform: translateY(-1px) scale(0.995);
}

.start-token-card__cover {
  position: relative;
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(circle at 50% 10%, rgba(79, 195, 255, 0.16), transparent 40%),
    rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.start-token-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.01);
  transition: transform var(--start-tween-mid) var(--start-tween-ease);
}

.start-token-card__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.55)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 36%);
  pointer-events: none;
}

.start-token-card__age {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  z-index: 1;
  padding: 0.2rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.68);
  color: #eaf4ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.start-token-card__vibe-play {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(211, 99, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.25), transparent 38%),
    linear-gradient(135deg, rgba(214, 62, 255, 0.92), rgba(111, 74, 255, 0.86));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(196, 61, 255, 0.22);
  cursor: pointer;
}

.start-token-card__vibe-play:hover {
  transform: scale(1.04);
}

.start-token-card__vibe-play.is-playing,
.start-token-card.is-vibe-playing .start-token-card__vibe-play {
  border-color: rgba(20, 241, 149, 0.45);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(135deg, rgba(20, 241, 149, 0.9), rgba(31, 111, 168, 0.92));
}

.start-token-card__vibe-play-icon {
  font-size: 0.68rem;
  line-height: 1;
  transform: translateX(1px);
}

.start-token-card__vibe-play.is-playing .start-token-card__vibe-play-icon {
  transform: none;
  font-size: 0.58rem;
  letter-spacing: -0.08em;
}

.start-token-card__vibe-tag {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(214, 140, 255, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.start-token-card__placeholder {
  font-size: 2rem;
  color: var(--muted);
  opacity: 0.5;
}

.start-token-card__body {
  padding: 0.52rem 0.68rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  flex: 1;
  min-width: 0;
}

.start-token-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.start-token-card__identity {
  min-width: 0;
}

.start-token-card__head h3 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.start-token-card__mint {
  display: none;
}

.start-token-card__symbol {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #9ee4ff;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 255, 0.25);
  background: rgba(79, 195, 255, 0.08);
}

.start-token-card__desc {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.start-token-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.34rem;
}

.start-token-card__metric {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14rem;
  padding: 0.34rem 0.44rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.62rem;
  background: rgba(0, 0, 0, 0.16);
}

.start-token-card__metric-label {
  display: block;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.start-token-card__metric-value {
  display: block;
  width: 100%;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.start-token-card__metric--primary {
  border-color: rgba(79, 195, 255, 0.18);
  background: rgba(79, 195, 255, 0.07);
}

.start-token-card__metric--liquidity {
  border-color: rgba(20, 241, 149, 0.16);
  background: rgba(20, 241, 149, 0.06);
}

.start-token-card__metric--liquidity .start-token-card__metric-value {
  color: #bdf8dc;
}

.start-token-card__curve {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.62rem;
  background: rgba(0, 0, 0, 0.12);
}

.start-token-card__curve-label {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.start-token-card__curve-bar {
  min-width: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.start-token-card__curve-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(79, 195, 255, 0.85), rgba(20, 241, 149, 0.85));
}

.start-token-card__curve-pct {
  flex-shrink: 0;
  min-width: 2.35rem;
  color: #b8ecff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.start-token-card__actions {
  display: flex;
  gap: 0.32rem;
  padding: 0.18rem 0.68rem 0.48rem;
}

.start-token-card__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 1.58rem;
  padding: 0.2rem 0.42rem;
  font-size: 0.7rem;
  line-height: 1.1;
}

.start-token-card__quick-buy {
  width: 100%;
  justify-content: center;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease);
  transform: translateZ(0);
}

.start-token-card--skeleton {
  pointer-events: none;
}

.start-token-card--skeleton .start-token-card__cover,
.start-token-card__line {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: startShimmer 1.2s ease-in-out infinite;
}

.start-token-card__line {
  height: 0.65rem;
  border-radius: 4px;
  margin-top: 0.45rem;
}

.start-token-card__line--wide {
  width: 70%;
}

@keyframes startShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ——— Premium surfaces (shared) ——— */

.start-premium-surface {
  position: relative;
  overflow: hidden;
  border-color: rgba(79, 195, 255, 0.16) !important;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(79, 195, 255, 0.08), transparent 58%),
    radial-gradient(90% 70% at 100% 100%, rgba(20, 241, 149, 0.06), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 12, 20, 0.62) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px);
}

.start-premium-surface--gold {
  border-color: rgba(255, 214, 140, 0.18) !important;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 198, 120, 0.1), transparent 58%),
    radial-gradient(90% 70% at 100% 100%, rgba(255, 196, 77, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(12, 10, 6, 0.66) !important;
}

.start-premium-surface--soft {
  border-color: rgba(79, 195, 255, 0.14) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 12, 20, 0.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.14) !important;
}

.start-premium-surface__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(79, 195, 255, 0.1), transparent 68%);
}

.start-premium-surface--gold .start-premium-surface__glow {
  background: radial-gradient(ellipse at center, rgba(255, 196, 108, 0.14), transparent 68%);
}

.start-premium-surface__body {
  position: relative;
  z-index: 1;
}

.start-trade-panel__badge--gold {
  border-color: rgba(255, 214, 140, 0.24);
  color: #ffe7a8;
  background: rgba(255, 196, 77, 0.1);
}

/* ——— Launch form ——— */

.start-page .start-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 1.5rem;
}

.start-steps {
  justify-content: center;
  gap: 0.38rem;
  margin: 0 0 0.72rem;
}

.start-steps .step {
  min-height: 1.85rem;
  padding: 0.34rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(20, 28, 44, 0.82);
  color: #9ea9c5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.start-steps .step.active {
  border-color: rgba(231, 114, 244, 0.34);
  background:
    linear-gradient(135deg, rgba(198, 79, 255, 0.26), rgba(255, 83, 184, 0.12)),
    rgba(59, 31, 74, 0.86);
  color: #ffe5fa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(198, 79, 255, 0.12);
}

.start-wallet-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
}

.start-wallet-card__main {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
}

.start-wallet-card .launcher-wallet-label {
  white-space: nowrap;
}

.start-wallet-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  max-width: 2.1rem;
  max-height: 2.1rem;
  flex: 0 0 auto;
  padding: 0.42rem;
  border: 1px solid rgba(79, 195, 255, 0.22);
  border-radius: 999px;
  background: rgba(79, 195, 255, 0.07);
  filter: invert(86%) sepia(18%) saturate(921%) hue-rotate(156deg) brightness(102%) contrast(99%);
  box-shadow: 0 0 20px rgba(79, 195, 255, 0.12);
}

.start-wallet-card__hint {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.82rem;
  text-align: right;
  white-space: nowrap;
}

.start-form-card__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.start-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.start-form__row {
  display: grid;
  gap: 1rem;
}

.start-form__row--2 {
  grid-template-columns: 1fr;
}

.start-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.start-field label,
.start-field__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.start-field__hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.start-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.8rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
  line-height: 1.35;
  transition:
    border-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease);
}

.start-input:focus {
  outline: none;
  border-color: rgba(79, 195, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(79, 195, 255, 0.12);
}

.start-input--textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.start-input--symbol {
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.start-input--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
}

.start-vibe-select {
  position: relative;
}

.start-vibe-select__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(79, 195, 255, 0.22);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.18);
  color: var(--text, #eaf4ff);
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-fast) var(--start-tween-ease),
    transform var(--start-tween-fast) var(--start-tween-ease);
}

.start-vibe-select__trigger:hover:not(:disabled) {
  border-color: rgba(211, 99, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(211, 99, 255, 0.12);
}

.start-vibe-select__trigger:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.start-vibe-select.is-open .start-vibe-select__trigger {
  border-color: rgba(211, 99, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(211, 99, 255, 0.16),
    0 12px 28px rgba(196, 61, 255, 0.12);
}

.start-vibe-select__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: rgba(234, 244, 255, 0.72);
}

.start-vibe-select__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-vibe-select__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}

.start-vibe-select__chevron {
  color: rgba(234, 244, 255, 0.72);
  font-size: 0.82rem;
  transition: transform var(--start-tween-fast) var(--start-tween-ease);
}

.start-vibe-select.is-open .start-vibe-select__chevron {
  transform: rotate(180deg);
}

.start-vibe-select__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 16rem;
  overflow: auto;
  padding: 0.35rem;
  border: 1px solid rgba(79, 195, 255, 0.22);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(160deg, rgba(18, 24, 38, 0.98), rgba(10, 14, 24, 0.98)),
    rgba(7, 10, 18, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.start-vibe-select__option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.5rem 0.55rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.start-vibe-select__option:hover,
.start-vibe-select__option:focus-visible {
  background: rgba(79, 195, 255, 0.08);
  outline: none;
}

.start-vibe-select__option.is-selected {
  background:
    linear-gradient(135deg, rgba(214, 62, 255, 0.16), rgba(111, 74, 255, 0.12)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(211, 99, 255, 0.22);
}

.start-vibe-select__option-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(234, 244, 255, 0.72);
}

.start-vibe-select__option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-vibe-select__option-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
}

.start-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 132px;
  padding: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px dashed rgba(79, 195, 255, 0.28);
  background: rgba(79, 195, 255, 0.03);
  cursor: pointer;
  text-align: center;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
  will-change: transform;
  transform: translateZ(0);
}

.start-drop-zone:hover,
.start-drop-zone:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(79, 195, 255, 0.5);
  background: rgba(79, 195, 255, 0.06);
  outline: none;
}

.start-drop-zone.is-dragover {
  border-color: rgba(20, 241, 149, 0.55);
  background: rgba(20, 241, 149, 0.06);
}

.start-drop-zone.has-file {
  border-style: solid;
  border-color: rgba(20, 241, 149, 0.35);
}

.start-drop-zone__icon {
  font-size: 1.35rem;
  opacity: 0.7;
}

.start-drop-zone__title {
  font-weight: 600;
  font-size: 0.92rem;
}

.start-drop-zone__sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.start-image-preview {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.65rem;
  padding: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.start-image-preview img {
  width: 64px;
  height: 64px;
  border-radius: 0.65rem;
  object-fit: cover;
  flex-shrink: 0;
}

.start-image-preview.is-default-cover img {
  object-fit: contain;
  background: #000;
}

.start-image-preview.is-clickable {
  cursor: pointer;
}

.start-image-preview__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  font-size: 0.82rem;
  color: var(--muted);
  word-break: break-all;
}

.start-advanced {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.start-advanced summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  user-select: none;
}

.start-advanced__body {
  margin-top: 0.75rem;
}

.start-launch-card__note {
  margin: 0 0 1rem;
}

.start-launch-template {
  margin-bottom: 1rem;
}

.start-launch-template__lead {
  margin: 0 0 0.85rem;
}

.start-launch-template__lead a {
  color: #14f195;
}

.start-launch-template__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.65rem 1.25rem;
  margin: 0;
}

.start-launch-template__specs div {
  display: grid;
  gap: 0.15rem;
}

.start-launch-template__specs dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.start-launch-template__specs dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

.start-launch-card__note code {
  font-size: 0.85em;
}

.start-creator-buy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.start-creator-buy__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.start-creator-buy__toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #14f195;
}

.start-creator-buy__hint {
  margin: 0;
}

.start-creator-buy--premium .start-creator-buy__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.2rem;
  padding: 1rem 1rem 0.92rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 214, 140, 0.14);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 198, 120, 0.09), transparent 58%),
    radial-gradient(90% 70% at 100% 100%, rgba(79, 195, 255, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(8, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.start-creator-buy__panel-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 196, 108, 0.14), transparent 68%);
  pointer-events: none;
}

.start-creator-buy__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.start-creator-buy__head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.start-creator-buy__eyebrow {
  color: #f6d7a8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.start-creator-buy__supply-note {
  color: var(--muted);
  font-size: 0.72rem;
}

.start-creator-buy__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  padding: 0.28rem 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 214, 140, 0.22);
  background: linear-gradient(135deg, rgba(255, 214, 140, 0.12), rgba(79, 195, 255, 0.08));
  box-shadow: 0 8px 24px rgba(255, 196, 108, 0.08);
}

.start-creator-buy__value-num {
  color: #fff4df;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.start-creator-buy__value-suffix {
  color: #f6d7a8;
  font-size: 0.92rem;
  font-weight: 700;
}

.start-creator-buy__slider-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.42rem;
}

.start-creator-buy__slider-rail {
  position: relative;
  height: 0.42rem;
  margin-top: -1.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.start-creator-buy__slider-fill {
  height: 100%;
  width: var(--creator-buy-fill, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #d4a24a 0%, #f7d9a0 38%, #4fc3ff 100%);
  box-shadow: 0 0 18px rgba(255, 208, 128, 0.28);
  transition: width 120ms ease;
}

.start-creator-buy__slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1.72rem;
  margin: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.start-creator-buy__slider:focus {
  outline: none;
}

.start-creator-buy__slider:focus-visible + .start-creator-buy__slider-rail {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(79, 195, 255, 0.35);
}

.start-creator-buy__slider::-webkit-slider-runnable-track {
  height: 0.42rem;
  background: transparent;
}

.start-creator-buy__slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: -0.36rem;
  border: 2px solid rgba(255, 244, 223, 0.95);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, #fff8ea, #f0c56d 58%, #9a6a1d 100%);
  box-shadow:
    0 0 0 4px rgba(255, 196, 108, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.start-creator-buy__slider:active::-webkit-slider-thumb,
.start-creator-buy__slider:hover::-webkit-slider-thumb {
  transform: scale(1.06);
  box-shadow:
    0 0 0 5px rgba(255, 196, 108, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.32);
}

.start-creator-buy__slider::-moz-range-track {
  height: 0.42rem;
  background: transparent;
  border: 0;
}

.start-creator-buy__slider::-moz-range-thumb {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(255, 244, 223, 0.95);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #fff8ea, #f0c56d 58%, #9a6a1d 100%);
  box-shadow:
    0 0 0 4px rgba(255, 196, 108, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.start-creator-buy__edges {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.start-creator-buy__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.start-creator-buy__stat {
  padding: 0.62rem 0.68rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(79, 195, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.start-creator-buy__stat-label {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.start-creator-buy__stat-value {
  color: #eaf7ff;
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.start-creator-buy__presets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.start-creator-buy__preset {
  min-height: 1.95rem;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(255, 214, 140, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  color: #f6d7a8;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
}

.start-creator-buy__preset:hover,
.start-creator-buy__preset:focus-visible,
.start-creator-buy__preset.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 140, 0.34);
  color: #fff4df;
  box-shadow: 0 8px 22px rgba(255, 196, 108, 0.12);
}

.start-creator-buy__quote-hint {
  position: relative;
  z-index: 1;
  margin: 0;
}

.start-launch-cost {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-bottom: 1rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(79, 195, 255, 0.16);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(79, 195, 255, 0.07), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(7, 10, 18, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.start-launch-cost__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.start-launch-cost__row strong {
  color: #d8ecff;
  font-size: 0.86rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.start-launch-cost__row--total {
  margin-top: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(79, 195, 255, 0.12);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.start-launch-cost__row--total strong {
  color: #c8ffe8;
  font-size: 0.95rem;
}

.start-launch-cost__hint {
  margin: 0.15rem 0 0;
}

.start-launch-cost__hint.is-error {
  color: #ffb4b4;
}

.start-launch-card__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.55rem;
}

.btn--wide {
  width: auto;
  justify-content: center;
}

.start-log {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
}

.start-log.is-error {
  border-color: rgba(255, 96, 96, 0.45);
  color: #ffb4b4;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Token page ——— */

.token-page__main {
  padding-bottom: 3rem;
}

.token-page__shell.card--track {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(79, 195, 255, 0.1), transparent 58%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(20, 241, 149, 0.06), transparent 55%),
    rgba(7, 10, 18, 0.78);
  border-color: rgba(79, 195, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 56px rgba(0, 0, 0, 0.32);
}

.token-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}

.token-layout__hero {
  display: grid;
  gap: 1rem 1.25rem;
  align-items: start;
  padding-bottom: clamp(0.85rem, 2vw, 1.15rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.token-hero__cover {
  margin: 0;
}

.token-hero__cover img {
  display: block;
  width: 100%;
  max-width: 7.5rem;
  aspect-ratio: 1;
  border-radius: 1.1rem;
  object-fit: cover;
  border: 1px solid rgba(79, 195, 255, 0.28);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(79, 195, 255, 0.12);
}

.token-hero__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 7.5rem;
  aspect-ratio: 1;
  border-radius: 1.1rem;
  border: 1px dashed rgba(79, 195, 255, 0.28);
  background: rgba(79, 195, 255, 0.05);
  color: var(--muted);
  font-size: 2rem;
}

.token-layout__identity {
  min-width: 0;
}

.token-layout__eyebrow {
  margin: 0 0 0.35rem;
  color: rgba(158, 228, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.token-layout__identity h1 {
  margin: 0;
  max-width: 100%;
  color: #f4fbff;
  font-size: clamp(1.55rem, 4.2vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.token-layout__symbol {
  margin: 0.28rem 0 0;
  color: #9ee4ff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.token-layout__desc {
  margin: 0.65rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.token-vibe {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(214, 62, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 21, 40, 0.92), rgba(74, 42, 92, 0.35));
}

.token-vibe__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 140, 255, 0.88);
}

.token-vibe__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.token-vibe__play {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(211, 99, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(214, 62, 255, 0.92), rgba(111, 74, 255, 0.86));
  color: #fff;
  cursor: pointer;
}

.token-vibe__play.is-playing {
  border-color: rgba(20, 241, 149, 0.45);
  background: linear-gradient(135deg, rgba(20, 241, 149, 0.9), rgba(31, 111, 168, 0.92));
}

.token-vibe__play-icon {
  font-size: 0.75rem;
  transform: translateX(1px);
}

.token-vibe__meta {
  min-width: 0;
}

.token-vibe__title {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.token-vibe__link {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: rgba(180, 220, 255, 0.92);
}

.token-vibe__audio {
  width: 100%;
  margin-top: 0.75rem;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.token-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.2rem;
  min-height: 4.1rem;
  padding: 0.62rem 0.72rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.token-stat--primary {
  border-color: rgba(79, 195, 255, 0.22);
  background: rgba(79, 195, 255, 0.07);
}

.token-stat__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.token-stat__value {
  font-size: clamp(0.88rem, 2.2vw, 1.02rem);
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
}

.token-curve {
  margin: 0.85rem 0 0;
}

.token-curve__bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.token-curve__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(79, 195, 255, 0.9), rgba(20, 241, 149, 0.9));
  width: 0%;
  transition: width 0.35s ease;
}

.token-curve__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.38rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.token-curve__label strong {
  color: #b8ecff;
  font-size: 0.82rem;
  font-weight: 700;
}

.token-layout__body {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.token-layout__primary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.token-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.token-panel {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(79, 195, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 12, 20, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.token-panel__title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(158, 228, 255, 0.88);
}

.token-panel--actions .token-actions {
  margin-top: 0;
}

.token-layout__primary .dex-chart {
  margin-top: 0;
}

.token-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.5rem;
}

.token-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 2.35rem;
}

.token-share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.token-layout__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.token-mint {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.74rem;
  line-height: 1.4;
  word-break: break-all;
}

.start-boost-panel,
.start-trade-panel {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 1.05rem 1.15rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(20, 241, 149, 0.2);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(20, 241, 149, 0.07), transparent 55%),
    rgba(7, 10, 18, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.start-trade-panel--premium,
.start-boost-panel--premium {
  border-color: rgba(79, 195, 255, 0.18);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(20, 241, 149, 0.08), transparent 58%),
    radial-gradient(90% 70% at 100% 100%, rgba(79, 195, 255, 0.07), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(7, 10, 18, 0.68);
  backdrop-filter: blur(12px);
}

.start-boost-panel--premium {
  border-color: rgba(255, 214, 140, 0.2);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 198, 120, 0.1), transparent 58%),
    radial-gradient(90% 70% at 100% 100%, rgba(255, 196, 77, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(12, 10, 6, 0.68);
}

.start-boost-panel--premium .start-boost-tier-row {
  position: relative;
  z-index: 1;
  padding: 0.22rem;
  border: 1px solid rgba(255, 214, 140, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.start-boost-panel--premium .start-feed-sort__btn.is-active {
  border-color: rgba(255, 214, 140, 0.34);
  background: linear-gradient(135deg, rgba(255, 196, 77, 0.22), rgba(255, 140, 20, 0.12));
  color: #fff0cf;
  box-shadow: 0 8px 22px rgba(255, 196, 77, 0.12);
}

.start-boost-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.start-boost-quote-box {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0.5rem 0.62rem;
  border: 1px solid rgba(255, 214, 140, 0.16);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 12, 20, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.start-boost-quote-line {
  margin: 0;
  color: #fff0cf;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.start-boost-quote-hint {
  margin: 0.18rem 0 0;
  color: rgba(246, 215, 168, 0.72);
  font-size: 0.68rem;
  line-height: 1.3;
}

.start-boost-footer .btn--primary {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.start-boost-panel--premium .btn--primary {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 196, 77, 0.92), rgba(255, 140, 20, 0.88));
  color: #1a1208;
  box-shadow: 0 10px 28px rgba(255, 196, 77, 0.18);
}

.start-boost-active {
  position: relative;
  z-index: 1;
}

.start-boost-tier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0;
}

.start-boost-tier-row .start-feed-sort__btn {
  flex: 1;
  min-width: 6.5rem;
}

.start-boost-paybox {
  margin: 0.75rem 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 196, 77, 0.28);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 196, 77, 0.06);
}

.start-boost-paybox dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.45rem;
}

.start-boost-paybox dt:first-child {
  margin-top: 0;
}

.start-boost-paybox dd {
  margin: 0.15rem 0 0;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 0.78rem;
  word-break: break-all;
}

.start-boost-paybox__amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffe7a8;
}

.start-boost-verify-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.start-boost-verify-row .start-input {
  width: 100%;
}

.start-boost-active {
  margin: 0.5rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 196, 77, 0.35);
  background: rgba(255, 196, 77, 0.08);
  color: #ffe7a8;
  font-size: 0.82rem;
}

.start-boost-panel.is-highlight,
.start-trade-panel.is-highlight {
  box-shadow: 0 0 0 2px rgba(20, 241, 149, 0.18);
}

.start-boost-panel h2,
.start-trade-panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.start-trade-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.start-trade-panel__head h2 {
  margin-bottom: 0;
}

.start-trade-panel__badge {
  flex: 0 0 auto;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(20, 241, 149, 0.2);
  border-radius: 999px;
  color: #bdf8dc;
  background: rgba(20, 241, 149, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-boost-panel p,
.start-trade-panel p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.start-boost-row,
.start-trade-row,
.start-trade-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 0.55rem;
  align-items: center;
}

.token-layout__aside .start-trade-row,
.token-layout__aside .start-boost-row {
  flex-direction: column;
  align-items: stretch;
}

.token-layout__aside .start-trade-row .btn,
.token-layout__aside .start-boost-row .btn {
  width: 100%;
}

.start-trade-row[hidden],
.start-trade-presets[hidden] {
  display: none !important;
}

.start-trade-tabs {
  margin: 0.75rem 0;
  width: 100%;
  min-width: 0;
}

.start-trade-tabs .start-feed-sort__btn {
  flex: 1 1 0;
  min-width: 0;
}

.start-trade-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.15rem 0 0.75rem;
  width: 100%;
  min-width: 0;
}

.start-trade-preset {
  min-height: 1.9rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(79, 195, 255, 0.18);
  border-radius: 999px;
  background: rgba(79, 195, 255, 0.055);
  color: #b8ecff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--start-tween-fast) var(--start-tween-ease),
    border-color var(--start-tween-fast) var(--start-tween-ease),
    background-color var(--start-tween-fast) var(--start-tween-ease),
    color var(--start-tween-fast) var(--start-tween-ease),
    box-shadow var(--start-tween-mid) var(--start-tween-ease);
  will-change: transform;
  transform: translateZ(0);
}

.start-trade-preset:hover,
.start-trade-preset:focus-visible,
.start-trade-preset.is-active {
  transform: translateY(-1px);
  border-color: rgba(20, 241, 149, 0.32);
  color: #d8ffe9;
  box-shadow: 0 6px 16px rgba(20, 241, 149, 0.12);
}

.start-trade-presets--sell .start-trade-preset {
  border-color: rgba(255, 214, 140, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  color: #f6d7a8;
}

.start-trade-presets--sell .start-trade-preset:hover,
.start-trade-presets--sell .start-trade-preset:focus-visible,
.start-trade-presets--sell .start-trade-preset.is-active {
  border-color: rgba(255, 214, 140, 0.34);
  color: #fff4df;
  box-shadow: 0 8px 22px rgba(255, 196, 108, 0.12);
}

.start-trade-row label {
  flex: 1 1 7rem;
  min-width: 6rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.start-boost-row .start-input,
.start-trade-row .start-input {
  flex: 1 1 7rem;
  width: auto;
  min-width: 6.5rem;
  max-width: 9rem;
}

.start-boost-status {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.start-boost-status.is-error {
  color: #ffb4b4;
}

.start-trade-sell-slider {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.62rem 0.6rem;
  border: 1px solid rgba(79, 195, 255, 0.14);
  border-radius: 0.72rem;
  background: rgba(79, 195, 255, 0.04);
}

.start-trade-sell-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 0.38rem;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.start-trade-sell-slider__head strong {
  color: #b8ecff;
  font-size: 0.82rem;
}

.start-trade-range {
  width: 100%;
  accent-color: #4fc3ff;
}

.start-trade-range:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.start-trade-sell-balance {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.start-trade-sell-balance.is-error {
  color: #ffb4b4;
}

.start-trade-amount {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.start-trade-amount[hidden] {
  display: none !important;
}

.start-trade-amount--premium .start-trade-amount__shell {
  position: relative;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.92rem 0.95rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(79, 195, 255, 0.14);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(79, 195, 255, 0.07), transparent 58%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 12, 20, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.18);
  overflow: clip;
}

.start-trade-amount--sell .start-trade-amount__shell {
  border-color: rgba(255, 214, 140, 0.14);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 198, 120, 0.08), transparent 58%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 12, 20, 0.55);
}

.start-trade-amount__shell-glow {
  position: absolute;
  top: -35%;
  left: 0;
  right: 0;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(79, 195, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.start-trade-amount--sell .start-trade-amount__shell-glow {
  background: radial-gradient(ellipse at center, rgba(255, 196, 108, 0.12), transparent 68%);
}

.start-trade-amount__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.start-trade-amount__head--split {
  align-items: flex-start;
}

.start-trade-amount__label {
  min-width: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.start-trade-amount__pct {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.22rem 0.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 214, 140, 0.2);
  background: linear-gradient(135deg, rgba(255, 214, 140, 0.1), rgba(79, 195, 255, 0.06));
}

.start-trade-amount__pct-label {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.start-trade-amount__pct-value {
  color: #fff4df;
  font-size: 0.92rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.start-trade-slider-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.38rem;
  width: 100%;
  min-width: 0;
  padding-inline: 0.1rem;
  box-sizing: border-box;
}

.start-trade-slider-rail {
  position: relative;
  height: 0.42rem;
  margin-top: -1.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.start-trade-slider-fill {
  height: 100%;
  width: var(--trade-slider-fill, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #14f195 0%, #4fc3ff 100%);
  box-shadow: 0 0 18px rgba(79, 195, 255, 0.24);
  transition: width 120ms ease;
}

.start-trade-slider-fill--sell {
  background: linear-gradient(90deg, #d4a24a 0%, #f7d9a0 38%, #4fc3ff 100%);
  box-shadow: 0 0 18px rgba(255, 208, 128, 0.22);
}

.start-trade-slider-edges {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.start-trade-range--premium {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1.72rem;
  margin: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.start-trade-range--premium:focus {
  outline: none;
}

.start-trade-range--premium::-webkit-slider-runnable-track {
  height: 0.42rem;
  background: transparent;
}

.start-trade-range--premium::-webkit-slider-thumb {
  appearance: none;
  width: 1.12rem;
  height: 1.12rem;
  margin-top: -0.35rem;
  border: 2px solid rgba(234, 247, 255, 0.95);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f4fbff, #7fd6ff 58%, #1f6f9f 100%);
  box-shadow:
    0 0 0 4px rgba(79, 195, 255, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.start-trade-amount--sell .start-trade-range--premium::-webkit-slider-thumb {
  border-color: rgba(255, 244, 223, 0.95);
  background: radial-gradient(circle at 35% 30%, #fff8ea, #f0c56d 58%, #9a6a1d 100%);
  box-shadow:
    0 0 0 4px rgba(255, 196, 108, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.start-trade-range--premium:active::-webkit-slider-thumb,
.start-trade-range--premium:hover::-webkit-slider-thumb {
  transform: scale(1.06);
}

.start-trade-range--premium::-moz-range-track {
  height: 0.42rem;
  background: transparent;
  border: 0;
}

.start-trade-range--premium::-moz-range-thumb {
  width: 1.12rem;
  height: 1.12rem;
  border: 2px solid rgba(234, 247, 255, 0.95);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f4fbff, #7fd6ff 58%, #1f6f9f 100%);
  box-shadow:
    0 0 0 4px rgba(79, 195, 255, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.start-trade-range-label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  cursor: pointer;
}

.start-trade-range__edge {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.start-trade-amount__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
}

.start-trade-amount__input {
  width: 100%;
  min-width: 0;
  min-height: 2.5rem;
  border: 1px solid rgba(79, 195, 255, 0.2);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.55rem 0.68rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.start-trade-amount__input:focus {
  outline: none;
  border-color: rgba(79, 195, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(79, 195, 255, 0.25);
}

.start-trade-amount__unit {
  color: #d9fff0;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.start-trade-amount__max {
  flex-shrink: 0;
}

.start-trade-buy-balance,
.start-trade-amount--premium .start-trade-sell-balance {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.start-trade-buy-balance.is-error {
  color: #ffb4b4;
}

.start-trade-amount__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

.token-layout__aside .start-trade-amount__actions .btn {
  width: 100%;
}

.token-layout__aside .start-trade-panel,
.token-layout__aside .start-boost-panel {
  padding: 0.9rem 0.82rem;
}

.token-layout__aside .start-boost-footer {
  flex-wrap: wrap;
}

.token-layout__aside .start-boost-footer .btn--primary {
  width: 100%;
  margin-left: 0;
}

@media (min-width: 380px) {
  .token-layout__aside .start-boost-footer .btn--primary {
    width: auto;
    margin-left: auto;
  }
}

.token-layout__aside .start-trade-amount--premium .start-trade-amount__shell {
  padding: 0.72rem 0.68rem;
}

.token-layout__aside .start-trade-amount__head,
.token-layout__aside .start-trade-amount__head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  align-items: start;
}

.token-layout__aside .start-trade-amount__head--split .start-trade-amount__pct {
  justify-self: start;
  max-width: 100%;
}

.token-layout__aside .start-trade-amount__pct {
  padding: 0.18rem 0.42rem;
}

.token-layout__aside .start-trade-amount__pct-label {
  font-size: 0.58rem;
}

.token-layout__aside .start-trade-amount__pct-value {
  font-size: 0.84rem;
}

.token-layout__aside .start-trade-amount__unit {
  font-size: 0.78rem;
}

.token-layout__aside .start-trade-amount__max {
  min-width: 0;
  padding-inline: 0.48rem;
}

.token-layout__aside .start-trade-presets {
  gap: 0.35rem;
}

.token-layout__aside .start-trade-preset {
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 0;
  padding-inline: 0.42rem;
}

.token-layout__aside .start-trade-tabs .start-feed-sort__btn {
  flex: 1 1 0;
  min-width: 0;
}

/* ——— Responsive ——— */

@media (min-width: 560px) {
  .start-form__row--2 {
    grid-template-columns: 1fr 140px;
  }

  .start-feed-toolbar-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .start-feed-search {
    flex: 1;
    max-width: 320px;
  }
}

@media (min-width: 720px) {
  .token-layout__hero {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1.25rem 1.5rem;
  }

  .token-hero__cover img,
  .token-hero__cover--placeholder {
    max-width: 7.5rem;
  }

  .start-feed-toolbar-card {
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
  }

  .start-feed-toolbar__row--filters {
    justify-content: flex-start;
  }

  .start-feed-search {
    flex: 0 1 18rem;
    min-width: 12rem;
  }

  .start-feed-search .start-input {
    min-height: 1.95rem;
    padding-block: 0.34rem;
    font-size: 0.8rem;
  }

  .start-feed-filters {
    display: flex;
    flex: 999 1 28rem;
    min-width: 0;
  }

  .start-feed-filters[open] {
    flex: 1 1 auto;
    flex-basis: auto;
  }

  .start-feed-filters summary {
    display: none;
  }

  .start-feed-filters .start-feed-filters__body {
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: auto;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .start-feed-sort {
    flex-wrap: wrap;
    gap: 0.26rem;
  }

  .start-feed-source-toggle,
  .start-feed-stage-toggle {
    align-self: center;
    flex: 0 0 auto;
    padding: 0.13rem;
  }

  .start-feed-source-toggle .start-feed-sort__btn {
    min-width: 4.9rem;
  }

  .start-feed-stage-toggle .start-feed-sort__btn {
    min-width: 4.4rem;
  }

  .start-feed-sort__btn {
    min-height: 1.72rem;
    padding: 0.24rem 0.54rem;
    font-size: 0.68rem;
  }

  .start-feed-status {
    margin: -0.05rem 0 0.55rem;
    font-size: 0.76rem;
  }

  .start-feed-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (min-width: 960px) {
  .token-page__main {
    max-width: min(72rem, 100%);
  }

  .token-layout__body {
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 22rem);
    gap: 1.35rem 1.5rem;
  }

  .token-layout__aside {
    position: sticky;
    top: 5.5rem;
  }

  .token-hero__cover img,
  .token-hero__cover--placeholder {
    max-width: 8.5rem;
  }

  .token-layout__hero {
    grid-template-columns: 8.5rem minmax(0, 1fr);
  }
}

@media (min-width: 900px) {
  .start-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem 0.75rem;
  }

  .start-hero {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: none;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .launcher-tabs.start-tabs {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-width: none;
    margin: 0;
    align-self: stretch;
    min-width: 0;
  }

  .start-tab-panel {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .start-page--launch .start-main {
    grid-template-columns: minmax(0, 42rem);
    justify-content: center;
    align-items: start;
    gap: 0.5rem;
  }

  .start-page--launch .start-hero,
  .start-page--launch .launcher-tabs.start-tabs,
  .start-page--launch .start-tab-panel {
    grid-column: 1;
  }

  .start-page--launch .start-hero {
    grid-row: 1;
    width: 100%;
    margin-bottom: 0;
    padding: 0.48rem 0.62rem 0.48rem 0.72rem;
  }

  .start-page--launch .launcher-tabs.start-tabs {
    grid-row: 2;
    width: 100%;
    align-self: auto;
    margin-bottom: 0.52rem;
  }

  .start-page--launch .start-tab-panel {
    grid-row: 3;
    min-width: 0;
  }

  .start-page--launch .start-wrap {
    max-width: none;
    padding-bottom: 1.5rem;
  }

  .start-page--launch .start-steps {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.1rem;
    margin-bottom: 0.62rem;
    padding: 0.12rem;
    border: 1px solid rgba(79, 195, 255, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
      rgba(7, 10, 18, 0.22);
  }

  .start-page--launch .start-wallet-card,
  .start-page--launch .start-form-card {
    border-color: rgba(79, 195, 255, 0.2);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
      rgba(255, 255, 255, 0.01);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 14px 36px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 1180px) {
  .start-feed-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .start-token-card {
    border-radius: 0.95rem;
  }

  .start-token-card__cover {
    aspect-ratio: 1.55 / 1;
  }

  .start-token-card__body {
    padding: 0.48rem 0.56rem 0.52rem;
    gap: 0.24rem;
  }

  .start-token-card__actions {
    padding: 0.14rem 0.56rem 0.42rem;
  }

  .start-token-card__actions .btn {
    min-height: 1.48rem;
    font-size: 0.66rem;
  }

  .start-token-card__head h3 {
    font-size: 0.88rem;
  }

  .start-token-card__mint {
    font-size: 0.56rem;
  }

  .start-token-card__symbol {
    max-width: 4.8rem;
    padding: 0.12rem 0.34rem;
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .start-token-card__desc {
    font-size: 0.68rem;
  }

  .start-token-card__stats {
    gap: 0.28rem;
  }

  .start-token-card__metric {
    padding: 0.3rem 0.36rem;
    border-radius: 0.54rem;
  }

  .start-token-card__metric-value {
    font-size: 0.74rem;
  }

  .start-token-card__curve {
    padding: 0.24rem 0.3rem;
    gap: 0.3rem;
  }

  .start-token-card__metric-label {
    font-size: 0.5rem;
  }

  .start-token-card__metric-value {
    font-size: 0.64rem;
  }

  .start-token-card__curve-pct {
    font-size: 0.62rem;
  }
}

@media (max-width: 559px) {
  .start-wallet-card {
    gap: 0.45rem;
    padding: 0.55rem 0.6rem;
  }

  .start-wallet-card__icon {
    width: 1.65rem;
    height: 1.65rem;
    max-width: 1.65rem;
    max-height: 1.65rem;
    padding: 0.34rem;
  }

  .start-wallet-card__main {
    flex: 1 1 auto;
    justify-content: space-between;
    min-width: 0;
    gap: 0.45rem;
  }

  .start-wallet-card .launcher-wallet-label {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .start-wallet-card__hint {
    display: none;
  }

  .start-hero {
    padding: 0.62rem 0.72rem;
    margin-bottom: 0.52rem;
    gap: 0.5rem;
  }

  .start-hero h1 {
    font-size: 1rem;
  }

  .start-feed-toolbar__row--main {
    flex-direction: column;
    align-items: stretch;
  }

  .start-feed-sort--primary {
    width: 100%;
  }

  .start-feed-toolbar__row--filters {
    flex-direction: column;
    align-items: stretch;
    gap: 0.42rem;
  }

  .start-feed-stage-toggle {
    width: 100%;
  }

  .start-feed-stage-toggle .start-feed-sort__btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .start-feed-liquidity-toggle {
    align-self: flex-start;
  }

  .launcher-tabs.start-tabs {
    width: 100%;
  }

  .launcher-tabs.start-tabs .launcher-tabs__btn {
    flex: 1;
    text-align: center;
    min-height: 2.2rem;
  }

  .start-feed-toolbar-card {
    position: relative;
    top: auto;
    z-index: auto;
    margin-inline: 0;
    padding: 0.56rem;
    gap: 0.5rem;
    border-color: rgba(79, 195, 255, 0.18);
    background:
      linear-gradient(145deg, rgba(10, 16, 26, 0.88), rgba(7, 10, 18, 0.78)),
      rgba(7, 10, 18, 0.82);
    backdrop-filter: blur(8px);
  }

  .start-feed-search {
    flex: 1 1 0;
    min-width: 0;
  }

  .start-feed-search .start-input {
    min-height: 2.25rem;
    border-radius: 999px;
    font-size: 0.86rem;
  }

  .start-feed-filters {
    flex: 0 0 auto;
  }

  .start-feed-filters[open] {
    flex: 0 0 100%;
  }

  .start-feed-filters .start-feed-filters__body {
    margin-top: 0.45rem;
    padding: 0.5rem;
  }

  .start-feed-sort {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.05rem;
    scrollbar-width: none;
  }

  .start-feed-sort::-webkit-scrollbar {
    display: none;
  }

  .start-feed-sort__btn {
    flex: 0 0 auto;
    min-height: 2.05rem;
    padding: 0.38rem 0.7rem;
    font-size: 0.76rem;
  }

  .start-feed-source-toggle {
    align-self: stretch;
    width: 100%;
    overflow: visible;
  }

  .start-feed-source-toggle .start-feed-sort__btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .start-feed-status {
    margin: 0.35rem 0 0.45rem;
    padding-inline: 0.15rem;
    font-size: 0.76rem;
  }

  .start-feed-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin: 0 0 0.65rem;
    padding: 0.38rem 0.52rem;
    border: 1px solid rgba(79, 195, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
  }

  .start-feed-mobile-controls__hint {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .start-feed-swipe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(79, 195, 255, 0.35);
    border-radius: 999px;
    background:
      radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.16), transparent 45%),
      rgba(10, 16, 26, 0.88);
    color: #eaf4ff;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .start-feed-swipe-btn:active {
    transform: scale(0.96);
  }

  .start-feed-grid {
    display: flex;
    gap: 0.68rem;
    margin-inline: calc(var(--container-pad, 0px) * -1);
    padding: 0.1rem 0.78rem 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.78rem;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .start-feed-grid > .start-token-card,
  .start-feed-grid > .start-token-card--skeleton {
    content-visibility: auto;
    contain-intrinsic-size: 280px;
  }

  .start-feed-grid::-webkit-scrollbar {
    display: none;
  }

  .start-token-card,
  .start-token-card--skeleton {
    flex: 0 0 min(88vw, 20.5rem);
    scroll-snap-align: start;
    min-height: 0;
    border-radius: 1rem;
  }

  .start-token-card__cover {
    aspect-ratio: 1.85 / 1;
  }

  .start-token-card__body {
    padding: 0.55rem 0.68rem 0.6rem;
    gap: 0.26rem;
  }

  .start-token-card__head {
    align-items: flex-start;
  }

  .start-token-card__head h3 {
    font-size: 1rem;
  }

  .start-token-card__symbol {
    max-width: 6.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .start-token-card__desc {
    font-size: 0.72rem;
  }

  .start-token-card__stats {
    gap: 0.3rem;
  }

  .start-token-card__metric {
    padding: 0.32rem 0.38rem;
  }

  .start-token-card__actions {
    padding: 0.16rem 0.68rem 0.46rem;
  }

  .start-token-card__actions .btn {
    min-height: 1.52rem;
    font-size: 0.68rem;
  }

  .start-boost-row .btn {
    width: auto;
    flex: 0 1 auto;
  }

  .token-actions {
    grid-template-columns: 1fr;
  }

  .start-trade-panel__head {
    align-items: flex-start;
  }

  .start-trade-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: 100%;
  }

  .start-trade-row label {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .start-trade-row .start-input {
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  .start-trade-row .btn {
    min-width: 5.3rem;
    padding-inline: 0.68rem;
    white-space: nowrap;
  }

  .start-trade-row .btn--primary {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 559px) {
  .token-stats {
    grid-template-columns: 1fr;
  }

  .token-stat {
    min-height: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .token-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .start-hero {
    padding: 0.55rem 0.62rem;
  }

  .start-feed-toolbar-card {
    padding: 0.48rem;
  }

  .start-feed-search .start-input {
    min-height: 2.12rem;
    font-size: 0.82rem;
  }

  .start-feed-sort__btn {
    flex: 0 0 auto;
    text-align: center;
    min-height: 1.95rem;
    font-size: 0.72rem;
  }

  .start-trade-row {
    grid-template-columns: 1fr;
  }

  .start-trade-row .btn {
    width: 100%;
  }

  .token-actions .btn {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-page .btn,
  .token-page .btn,
  .start-tabs .launcher-tabs__btn,
  .start-creator-buy__preset,
  .start-creator-buy__slider-fill,
  .start-token-card--boosted,
  .start-token-card--boosted::before,
  .start-token-card--boosted .start-token-card__shine,
  .start-trade-slider-fill,
  .start-feed-sort__btn,
  .start-token-card,
  .start-token-card__cover img,
  .start-token-card__quick-buy,
  .start-drop-zone,
  .start-trade-preset,
  .token-curve__fill {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .start-page .btn--primary:hover,
  .token-page .btn--primary:hover,
  .start-feed-sort__btn:hover,
  .start-creator-buy__preset:hover,
  .start-creator-buy__preset:focus-visible,
  .start-drop-zone:hover,
  .start-drop-zone:focus-visible,
  .start-trade-preset:hover,
  .start-trade-preset:focus-visible,
  .start-token-card:hover,
  .start-token-card:active {
    transform: none !important;
  }
}
