/* === bnbultra — Launch page (new layout) === */

.launch-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
}
@media (max-width: 960px){ .launch-grid{ grid-template-columns: 1fr; } }

.page-head{ margin: 6px 0 16px; }
.page-title{ margin:0; font-size:28px; font-weight:800; letter-spacing:.2px; }
.page-sub{ margin:6px 0 0; color:var(--muted); }

.stepper{
  border:1px solid var(--stroke); border-radius:18px;
  background: linear-gradient(180deg, rgba(255,122,26,.08), rgba(255,122,26,0) 30%), var(--panel);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.03);
  padding:14px;
}
.step{ display:grid; grid-template-columns: 36px 1fr; gap:12px; padding:10px 8px; border-bottom:1px dashed var(--stroke); }
.step:last-of-type{ border-bottom:none; }
.step__num{
  width:36px; height:36px; border-radius:999px; display:grid; place-items:center;
  background:#1a120c; color:#ffb27a; font-weight:800; border:1px solid rgba(255,122,26,.45);
}
.step__body h3{ margin:0 0 4px; font-size:16px; }
.step__body p{ margin:0; color:var(--muted); }

/* Sticky quick connect */
.sticky{ position: sticky; top: 16px; }

/* Info card matches main theme */
.info-card{
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,122,26,.1), rgba(255,122,26,0) 28%),
    var(--panel);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.03);
  padding: 12px;
}
.info-card__header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 6px 10px; border-bottom: 1px solid var(--stroke);
  font-weight: 800; letter-spacing: .3px;
}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  font-size: 11px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; border: 1px solid var(--stroke);
  background: #1b1411; color: #ffb27a;
}
.chip--ok{ border-color: rgba(255,122,26,.45); }

.info-row{
  display:grid; grid-template-columns: 120px 1fr; gap: 8px;
  padding: 10px 6px; border-bottom: 1px dashed var(--stroke);
}
.info-row:last-of-type{ border-bottom: none; }
.info-label{ color: var(--muted); font-size: 12px; letter-spacing: .3px; }
.info-value{ color: var(--text); font-weight: 700; }
.info-foot{ display:flex; gap: 8px; margin-top: 10px; }

/* Tokens list + card */
.launch-list{ display:grid; gap:12px; }
.launch-loading, .launch-empty, .launch-error{
  display:flex; align-items:center; justify-content:center; gap:10px; min-height:220px;
  padding:24px; border:1px solid var(--stroke); border-radius:16px;
  background: linear-gradient(180deg, rgba(255,122,26,.06), rgba(255,122,26,0) 30%), var(--panel);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.03);
}

.token-card{
  display:grid; grid-template-columns: 1fr auto; align-items:center; gap:12px;
  background: linear-gradient(180deg, rgba(255,122,26,.05), rgba(255,122,26,0) 28%), var(--panel);
  border:1px solid var(--stroke); border-radius:14px; padding:14px 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.token-card:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: rgba(255,255,255,.06); }

.token-title{ font-size:15px; font-weight:800; line-height:1.2; margin:0 0 6px; letter-spacing:.3px; }
.token-name{ color:var(--text); }
.token-sep{ color:var(--muted); margin:0 6px; }
.token-sym{ color:var(--accent); }

.token-addr.addr{ margin:0; font-size:12px; letter-spacing:.3px; color:var(--muted); cursor:copy; }

.token-actions{ display:flex; align-items:center; gap:8px; }
.btn.btn-small{ padding:9px 12px; border-radius:10px; font-size:13px; line-height:1; box-shadow: var(--shadow-xs); text-transform:none; font-weight:800; }
.btn.btn-small.is-success{ background:#1a1410; color:var(--accent); border:1px solid var(--accent); }
.btn.btn-small.is-secondary{ background:var(--bg-3); color:var(--muted); border:1px solid var(--stroke); box-shadow:none; }

/* Token search */
.token-search{ margin: 18px 0; text-align:center; }
.token-search__note{ font-weight:600; font-size:13px; letter-spacing:.3px; color:var(--muted); margin-bottom:10px; }
.token-search__input{
  width:100%; max-width:520px; padding:12px 14px; font-weight:600; font-size:13px; letter-spacing:.3px; color:var(--text);
  background: var(--bg-3); border:1px solid var(--stroke); border-radius:12px; outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .06s ease;
}
.token-search__input::placeholder{ color:var(--muted); opacity:.85; }
.token-search__input:focus{ border-color:var(--accent); box-shadow:0 0 0 2px rgba(255,122,26,.22); transform: translateY(-1px); }
.token-search__btn{ text-transform:uppercase; }

/* OBS guide */
.obs-guide{
  position:relative; display:grid; grid-template-columns: 56px 1fr; gap:14px; width:100%;
  margin: 24px 0; padding:14px 16px; border:1px solid rgba(255,255,255,.06); border-radius:18px;
  background: linear-gradient(180deg, rgba(255,122,26,.06), rgba(255,122,26,0) 28%), var(--panel);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
}
.obs-guide::after{
  content:""; position:absolute; inset:-1px; border-radius:18px; pointer-events:none;
  background: linear-gradient(135deg, rgba(255,122,26,.25), rgba(255,122,26,.06));
  padding:1px; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity:.22;
}
.obs-guide__icon{ width:56px; height:56px; display:grid; place-items:center; border:1px solid var(--stroke); border-radius:12px; background: var(--bg-3); font-size:22px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.obs-guide__title{ margin:2px 0 6px; font-size:16px; font-weight:800; letter-spacing:.3px; }
.obs-guide__steps li{ color:var(--text); font-weight:700; font-size:13px; letter-spacing:.3px; line-height:1.55; }
.obs-guide__steps strong{ font-weight:800; }
.code-pill{ display:inline-block; padding:2px 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; font-size:13px; border:1px solid var(--stroke); border-radius:999px; background: var(--bg-3); color: var(--text); letter-spacing: .2px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.obs-guide__note{ margin:8px 0 0; font-size:12px; color:var(--muted); }

@media (max-width:640px){
  .obs-guide{ grid-template-columns: 40px 1fr; padding: 12px; }
  .obs-guide__icon{ width:40px; height:40px; font-size:18px; }
  .obs-guide__title{ font-size:15px; }
}

/* Skeleton placeholders */
.card--skeleton{ pointer-events:none; box-shadow: var(--shadow-sm); }
.skel{ position:relative; overflow:hidden; border-radius:8px; background:#1b1c20; }
.skel::after{ content:""; position:absolute; inset:0; transform: translateX(-100%); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%); animation: skel-shimmer 1.4s infinite; }
.skel-media{ height:100%; width:100%; border-radius:0; aspect-ratio: 16/9; background: linear-gradient(0deg, #0f0e0c, #18181c); }
.skel-badge{ position:absolute; top:10px; right:10px; width:76px; height:22px; border-radius:999px; background:#2a2220; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.card--skeleton .card-body{ background: var(--bg-2); border-bottom: 1px solid var(--stroke); }
.skel-title{ height:16px; width:70%; margin:2px 0 8px; }
.skel-addr{ height:12px; width:55%; opacity:.7; }
@keyframes skel-shimmer{ 0%{ transform: translateX(-100%);} 100%{ transform: translateX(100%);} }
