/* ===== OddsFi — shared styles ===== */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 8%;
  --primary: 0 0% 8%;
  --primary-foreground: 0 0% 98%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --card: 0 0% 100%;
  --border: 0 0% 90%;
  --fire-orange: 15 100% 50%;
  --green: 142 71% 45%;
  --blue: 217 91% 60%;
  --radius: 0.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1536px) { .container { max-width: 1400px; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}
.header-left { display: flex; align-items: center; gap: 1.5rem; min-width: 0; }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }

.price-pill {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  white-space: nowrap;
}
@media (min-width: 640px) { .price-pill { display: flex; } }
.price-pill .coin {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: #fff;
  border: 2px solid #d4d4d4;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  overflow: hidden;
  flex-shrink: 0;
}
.price-pill .coin img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.5); }
.price-pill .sym { font-weight: 600; color: hsl(var(--primary)); font-size: 0.875rem; }
.price-pill .px { font-weight: 700; color: hsl(var(--primary)); font-size: 0.875rem; }
.price-pill .chg { font-size: 0.875rem; font-weight: 500; color: hsl(var(--green)); }
.price-pill .chg.down { color: #ef4444; }

nav.main-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 900px) { nav.main-nav { display: flex; } }
nav.main-nav a, nav.main-nav button.link-btn {
  background: none; border: none; padding: 0;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s ease;
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.95rem;
}
nav.main-nav a:hover, nav.main-nav button.link-btn:hover { color: hsl(var(--foreground)); }
nav.main-nav a.nav-active { color: hsl(var(--foreground)); font-weight: 600; }

.buy-btn-header {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: hsl(var(--primary));
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}
.buy-btn-header:hover { opacity: 0.9; }

.mobile-menu-btn {
  display: inline-flex;
  background: none; border: none;
  color: hsl(var(--foreground));
  padding: 0.25rem;
}
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
  background: #fff;
}
.mobile-nav.open { display: flex; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav a, .mobile-nav button {
  background: none; border: none; text-align: left;
  padding: 0.6rem 0.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  border-bottom: 1px solid #f2f2f2;
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-nav .buy-btn-header { justify-content: center; margin-top: 0.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.btn svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.btn-primary { background: hsl(var(--primary)); color: #fff; }
.btn-primary:hover { background: hsl(var(--primary) / 0.9); opacity: 0.92; }
.btn-outline { background: hsl(var(--background)); color: hsl(var(--primary)); border-color: hsl(var(--primary)); }
.btn-outline:hover { background: hsl(var(--primary) / 0.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: #fff;
  overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23141414' fill-opacity='0.12'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero p.lead {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero p.lead { font-size: 1.5rem; } }
.hero-actions {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.buy-note {
  display: flex; align-items: flex-start; justify-content: center; gap: 0.5rem;
  max-width: 44rem; margin: 0 auto;
  font-size: 0.8rem; line-height: 1.5;
  color: hsl(var(--muted-foreground));
  text-align: left;
}
.buy-note > svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; margin-top: 0.15rem; }
.buy-note-addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: hsl(var(--foreground));
  word-break: break-all;
}
.buy-note-copy {
  background: none; border: none; padding: 0 0 0 0.15rem;
  color: hsl(var(--muted-foreground));
  vertical-align: middle;
}
.buy-note-copy:hover { color: hsl(var(--foreground)); }
.buy-note-copy svg { width: 0.85rem; height: 0.85rem; }

/* ---------- Sections ---------- */
section.tech, section.solana-section, section.partners { padding: 6rem 1rem; background: #fff; }
section.partners { border-top: 1px solid hsl(var(--border)); }
section.burn { padding: 6rem 1rem; background: hsl(var(--muted) / 0.5); }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 {
  font-size: 2.25rem; font-weight: 700; margin: 0 0 1.5rem;
}
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head p {
  font-size: 1.25rem; color: hsl(var(--muted-foreground));
  max-width: 48rem; margin: 0 auto;
}
.section-head .icon-title { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.section-head .icon-title svg { width: 2rem; height: 2rem; color: hsl(var(--fire-orange)); }
.section-head .icon-title h2 { margin: 0; }

.card-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.tech-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
  text-align: center;
  padding: 1.5rem;
}
.tech-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.tech-card .icon-wrap {
  margin: 0 auto 1rem;
  width: 4rem; height: 4rem;
  background: hsl(var(--primary));
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.tech-card:hover .icon-wrap { transform: scale(1.1); }
.tech-card .icon-wrap svg { width: 2rem; height: 2rem; color: #fff; }
.tech-card h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; }
.tech-card p { color: hsl(var(--muted-foreground)); line-height: 1.6; margin: 0; }

.stat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  padding: 1.5rem;
}
.stat-card .stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.stat-card .stat-top h3 { font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted-foreground)); margin: 0; }
.stat-card .stat-top svg { width: 1rem; height: 1rem; }
.stat-card .stat-value { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-card .stat-sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin: 0; }
.icon-primary { color: hsl(var(--primary)); }
.icon-fire { color: hsl(var(--fire-orange)); }
.icon-green { color: hsl(var(--green)); }
.icon-blue { color: hsl(var(--blue)); }
.text-fire { color: hsl(var(--fire-orange)); }

/* ---------- Network partners ---------- */
/* auto-fit with a max track keeps a single partner from stretching across the
   full container, and adds columns as the network grows. */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 24rem));
  justify-content: center;
  gap: 2rem;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.partner-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
/* The glgl wordmark is drawn in off-white for dark surfaces, so it gets its
   own dark plate rather than being recoloured. */
.partner-logo {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 1.5rem;
  background: hsl(var(--foreground));
  border-radius: calc(var(--radius) - 0.125rem);
  margin-bottom: 0.5rem;
}
.partner-logo img { height: 2.25rem; width: auto; }
.partner-name {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: 1.25rem; font-weight: 700;
}
.partner-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}
.partner-desc {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.95rem;
}
.partner-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  margin-top: auto;
}
.partner-cta, .partner-cta-alt {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  height: 2.5rem;
  padding: 0 1.4rem;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.partner-cta {
  background: hsl(var(--primary));
  color: #fff;
}
.partner-cta:hover { opacity: 0.9; }
.partner-cta-alt {
  padding: 0 1.1rem;
  color: hsl(var(--primary));
  border-color: hsl(var(--border));
}
.partner-cta-alt:hover { background: hsl(var(--primary) / 0.05); border-color: hsl(var(--primary)); }
.partner-cta-alt svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.partner-cta svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
/* The glgl flame lifted straight out of the wordmark, so the button carries the
   partner mark and not just their name. */
.partner-cta-mark { height: 1.05rem; width: auto; flex-shrink: 0; }
.partner-foot {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-top: 2.75rem;
  text-align: center;
}
.partner-foot p {
  margin: 0;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}
.partner-foot-btn { height: 2.5rem; padding: 0 1.4rem; font-weight: 600; }
.partner-foot-btn svg { width: 1.1rem; height: 1.1rem; }

/* ---------- Burn ticker ---------- */
.burn-ticker {
  margin-top: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
}
.burn-ticker-head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}
.burn-ticker-head h3 {
  margin: 0; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.live-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  background: hsl(var(--fire-orange));
  box-shadow: 0 0 0 0 hsl(var(--fire-orange) / 0.6);
  animation: live-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  70% { box-shadow: 0 0 0 0.4rem hsl(var(--fire-orange) / 0); }
  100% { box-shadow: 0 0 0 0 hsl(var(--fire-orange) / 0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

.burn-ticker-list { list-style: none; margin: 0; padding: 0; }
.burn-ticker-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f4f4f4;
  font-size: 0.875rem;
}
.burn-ticker-list li:last-child { border-bottom: none; }
.burn-dot {
  width: 0.4rem; height: 0.4rem; border-radius: 999px;
  background: hsl(var(--fire-orange)); flex-shrink: 0;
}
.burn-amount { font-weight: 600; color: hsl(var(--fire-orange)); }
.burn-when { color: hsl(var(--muted-foreground)); margin-left: auto; font-size: 0.8rem; white-space: nowrap; }
.burn-sig {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border));
  white-space: nowrap;
}
.burn-sig:hover { color: hsl(var(--foreground)); border-color: hsl(var(--foreground)); }
.burn-sig svg { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }

.solana-badge-wrap { max-width: 24rem; margin: 0 auto; }
.solana-badge-gradient {
  background: linear-gradient(to bottom right, #9945FF, #14F195);
  padding: 2px; border-radius: 0.75rem;
}
.solana-badge {
  background: hsl(var(--background));
  border-radius: calc(0.75rem - 2px);
  padding: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.solana-badge svg { height: 1.5rem; width: auto; }
.solana-badge h3 { font-size: 1.125rem; font-weight: 700; margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: #fff;
  border-top: 1px solid hsl(var(--border));
  padding: 2.5rem 1rem;
}
footer.site-footer .container {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; text-align: center;
}
@media (min-width: 768px) {
  footer.site-footer .container { flex-direction: row; justify-content: space-between; text-align: left; }
}
footer.site-footer .foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
footer.site-footer a { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
footer.site-footer a:hover { color: hsl(var(--foreground)); }
footer.site-footer .copy { color: hsl(var(--muted-foreground)); font-size: 0.8rem; }
.contract-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
  background: #fafafa; border: 1px solid #e5e5e5;
  padding: 0.3rem 0.6rem; border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.contract-pill button { background: none; border: none; color: hsl(var(--muted-foreground)); display: inline-flex; padding: 0; }
.contract-pill button:hover { color: hsl(var(--foreground)); }
.contract-pill svg { width: 0.9rem; height: 0.9rem; }

/* ---------- Swap page ---------- */
.swap-hero {
  padding-top: 9rem;
  padding-bottom: 2rem;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.swap-hero .hero-dots { opacity: 0.35; }
.swap-hero h1 {
  position: relative; z-index: 1;
  font-size: 2.5rem; font-weight: 700; margin: 0 0 1rem; line-height: 1.15;
}
@media (min-width: 768px) { .swap-hero h1 { font-size: 3.25rem; } }
.swap-hero p {
  position: relative; z-index: 1;
  font-size: 1.15rem; color: hsl(var(--muted-foreground));
  max-width: 42rem; margin: 0 auto; line-height: 1.6;
}

.swap-section { padding: 2rem 1rem 6rem; background: #fff; }
.swap-center { max-width: 760px; margin: 0 auto; }

.rate-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  padding: 2.25rem 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.rate-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.75rem; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.rate-token { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.rate-token img {
  width: 56px; height: 56px; border-radius: 999px;
  border: 1px solid hsl(var(--border)); background: #fff; object-fit: contain;
}
.rate-token .sym { font-weight: 700; font-size: 1rem; }
.rate-token .meta { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.rate-mid { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.rate-mid .ratio { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.rate-mid svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--muted-foreground)); }

.burn-callout {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: hsl(var(--fire-orange) / 0.06);
  border: 1px solid hsl(var(--fire-orange) / 0.25);
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.burn-callout svg { width: 1.1rem; height: 1.1rem; color: hsl(var(--fire-orange)); flex-shrink: 0; margin-top: 0.15rem; }
.burn-callout strong { color: hsl(var(--foreground)); font-weight: 600; }

.btn-lg { height: 3.25rem; font-size: 1rem; padding: 0 2.25rem; }
.cta-sub { font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin: 0.9rem 0 0; }

.market-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.swap-info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.swap-info-card h3 {
  font-size: 1.1rem; font-weight: 700; margin: 0 0 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.swap-info-card h3 svg { width: 1.15rem; height: 1.15rem; color: hsl(var(--fire-orange)); }
.swap-info-card p { color: hsl(var(--muted-foreground)); line-height: 1.6; margin: 0 0 1rem; font-size: 0.95rem; }
.swap-info-card p:last-child { margin-bottom: 0; }

.token-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.token-row:last-child { border-bottom: none; }
.token-row .token-id { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.token-row .token-icon {
  width: 28px; height: 28px; border-radius: 999px; flex-shrink: 0;
  border: 1px solid #e5e5e5; background: #fff; object-fit: contain;
}
.token-row .token-name { font-weight: 600; font-size: 0.9rem; }
.token-row .token-addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.token-row .copy-btn {
  background: none; border: 1px solid hsl(var(--border));
  border-radius: 0.4rem; padding: 0.4rem; flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  display: inline-flex;
}
.token-row .copy-btn:hover { color: hsl(var(--foreground)); border-color: hsl(var(--foreground)); }
.token-row .copy-btn svg { width: 0.9rem; height: 0.9rem; }

.steps-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.steps-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }
.steps-list .step-num {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 999px;
  background: hsl(var(--primary)); color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.jup-alt-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary));
  border-bottom: 1px solid hsl(var(--primary));
  padding-bottom: 1px;
}
.jup-alt-link svg { width: 0.9rem; height: 0.9rem; }

.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: hsl(var(--primary)); color: #fff;
  padding: 0.65rem 1.25rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  transition: transform 0.25s ease;
  z-index: 100;
}
.toast.show { transform: translateX(-50%) translateY(0); }
