:root {
  --bg: #0a0f16;
  --bg-2: #0f1622;
  --card: #111b28;
  --card-2: #0e1a2a;
  --text: #e6eef7;
  --muted: #9bb0c6;
  --accent: #4fe6d2;
  --accent-2: #7aa2ff;
  --accent-3: #ffb86b;
  --border: #1c2a3a;
  --glow: rgba(79, 230, 210, 0.22);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --grid: rgba(255, 255, 255, 0.03);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 800px at 15% -10%, rgba(94, 234, 212, 0.2), transparent 55%),
              radial-gradient(800px 600px at 85% 10%, rgba(122, 162, 255, 0.18), transparent 60%),
              linear-gradient(180deg, #0a0f16 0%, #0b111b 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Sora", "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.intro-active body {
  overflow: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  background: #05070b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
  transition: opacity 1.2s ease;
  opacity: 1;
  overflow: hidden;
}

.intro::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(900px 420px at 50% 12%, rgba(255, 255, 255, 0.8), transparent 62%);
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
  z-index: 0;
}

.intro-reveal {
  background: radial-gradient(1200px 800px at 15% -10%, rgba(94, 234, 212, 0.2), transparent 55%),
              radial-gradient(800px 600px at 85% 10%, rgba(122, 162, 255, 0.18), transparent 60%),
              linear-gradient(180deg, #0a0f16 0%, #0b111b 100%);
}

.intro-dark::after {
  opacity: 0;
}

.intro-light-dim::after {
  opacity: 0.22;
}

.intro-light-strong::after {
  opacity: 0.85;
}

.intro-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 18s ease;
  filter: contrast(1.05) saturate(1.05);
}

.intro-demon.show {
  opacity: 0.85;
  transform: scale(0.92);
}

.intro-demon.zoom {
  opacity: 1;
  transform: scale(1.08);
}

.intro-heaven.show {
  opacity: 0.85;
  transform: scale(0.92);
}

.intro-heaven.zoom {
  opacity: 1;
  transform: scale(1.08);
}

.intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-lines {
  display: grid;
  gap: 16px;
  max-width: min(960px, 86%);
  position: relative;
  z-index: 2;
}

.intro-line {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #f2f6ff;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 10px 26px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-line.show {
  opacity: 1;
  transform: translateY(0);
}

.intro-line.fast {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.intro-line.instant {
  transition: none;
}

.intro-line.final {
  font-size: clamp(56px, 8vw, 96px);
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 20px 50px rgba(79, 230, 210, 0.25),
    0 12px 30px rgba(0, 0, 0, 0.6);
}

.intro-skip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  background: rgba(15, 26, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f2f6ff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.intro-skip:hover {
  border-color: rgba(79, 230, 210, 0.6);
}

.intro.reveal {
  background: radial-gradient(800px 400px at 50% 0%, rgba(79, 230, 210, 0.25), transparent 60%),
              linear-gradient(180deg, #0a0f16 0%, #0b111b 100%);
}

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

a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 15, 22, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.logo img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

nav a:hover {
  border-color: rgba(79, 230, 210, 0.45);
  background: rgba(79, 230, 210, 0.08);
  color: var(--text);
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.lang-switch button.active {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--glow);
}

.hero {
  padding: 80px 0 40px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero .container {
  background: linear-gradient(120deg, rgba(79, 230, 210, 0.08), rgba(122, 162, 255, 0.08));
  border: 1px solid rgba(79, 230, 210, 0.18);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.section {
  padding: 48px 0;
}

.section::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 230, 210, 0.35) 40%, transparent 100%);
  opacity: 0.6;
}

.hero + .section::before {
  display: none;
}

.section-title {
  font-size: 22px;
  margin: 0 0 16px;
}

.card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 230, 210, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: linear-gradient(135deg, rgba(79, 230, 210, 0.22), rgba(122, 162, 255, 0.18));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(94, 234, 212, 0.2);
}

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

.prologue {
  display: grid;
  gap: 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  padding: 8px 0 8px 28px;
  position: relative;
}

.fade-line {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  letter-spacing: 0.02em;
}

.prologue-creative::before,
.prologue-creative::after {
  content: "";
  position: absolute;
  inset: -18px -10px;
  background: radial-gradient(320px 140px at 50% 0%, rgba(79, 230, 210, 0.12), transparent 70%);
  z-index: -1;
  border-radius: 18px;
}

.prologue-creative::after {
  background: radial-gradient(240px 140px at 70% 80%, rgba(122, 162, 255, 0.12), transparent 70%);
}

.prologue-cinematic {
  min-height: clamp(200px, 26vw, 360px);
  padding: 20px 0;
  display: block;
  gap: 14px;
  text-align: center;
  position: relative;
}

.prologue-hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.prologue-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 22, 0.85), transparent 35%, rgba(10, 15, 22, 0.7));
  pointer-events: none;
}

.prologue-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 3px),
    radial-gradient(300px 160px at 50% 0%, rgba(79, 230, 210, 0.12), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}

.prologue-cinematic .fade-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #eaf3ff;
  text-shadow: 0 14px 40px rgba(79, 230, 210, 0.15);
}

html.intro-active header {
  opacity: 0;
  pointer-events: none;
}

.prologue-start .fade-line:nth-child(1) { animation: cinematicLine 3.2s ease forwards; animation-delay: 0s; }
.prologue-start .fade-line:nth-child(2) { animation: cinematicLine 3.2s ease forwards; animation-delay: 2.8s; }
.prologue-start .fade-line:nth-child(3) { animation: cinematicLine 3.2s ease forwards; animation-delay: 5.6s; }
.prologue-start .fade-line:nth-child(4) { animation: cinematicLine 3.2s ease forwards; animation-delay: 8.4s; }
.prologue-start .fade-line:nth-child(5) { animation: cinematicLine 3.2s ease forwards; animation-delay: 11.2s; }
.prologue-start .fade-line:nth-child(6) { animation: cinematicLine 3.2s ease forwards; animation-delay: 14s; }
.prologue-start .fade-line:nth-child(7) { animation: cinematicLine 3.2s ease forwards; animation-delay: 16.8s; }
.prologue-start .fade-line:nth-child(8) { animation: cinematicLine 3.2s ease forwards; animation-delay: 19.6s; }
.prologue-start .fade-line:nth-child(9) { animation: cinematicLine 3.2s ease forwards; animation-delay: 22.4s; }
.prologue-start .fade-line:nth-child(10) { animation: cinematicLine 3.2s ease forwards; animation-delay: 25.2s; }
.prologue-start .fade-line:nth-child(11) { animation: cinematicLine 3.2s ease forwards; animation-delay: 28s; }
.prologue-start .fade-line:nth-child(12) { animation: cinematicHold 3.6s ease forwards; animation-delay: 30.8s; }

@keyframes cinematicLine {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes cinematicHold {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

.intro-done .prologue-cinematic .fade-line {
  position: static;
  opacity: 1;
  transform: none;
  animation: none;
  display: block;
  margin: 0 auto;
  visibility: visible;
}

.prologue-show-all .fade-line {
  position: static;
  opacity: 1;
  transform: none;
  animation: none;
  display: block;
  margin: 0 auto;
  visibility: visible;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
}

.prologue-show-all .prologue-final {
  font-size: clamp(36px, 5vw, 64px);
}

.prologue-cinematic .prologue-final {
  font-size: clamp(56px, 8vw, 96px);
  color: #ffffff;
  text-shadow: 0 20px 50px rgba(79, 230, 210, 0.28);
}


.vision-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 0 0;
}

.vision-block .section-title {
  font-size: clamp(22px, 2.6vw, 28px);
}

.vision-sections {
  display: grid;
  gap: 24px;
  margin-top: 12px;
}

.vision-section {
  border-left: 2px solid rgba(122, 162, 255, 0.45);
  padding-left: 16px;
}

.vision-section .section-title {
  margin-bottom: 10px;
}

.vision-section {
  font-size: clamp(16px, 2.1vw, 20px);
  color: #eaf3ff;
}

.vision-section strong {
  font-weight: 600;
}

.vision-details {
  margin-top: 8px;
}

.vision-details summary {
  cursor: pointer;
  color: var(--accent);
  list-style: none;
  font-weight: 600;
}

.vision-details summary::marker {
  display: none;
}

.vision-details summary::after {
  content: "＋";
  margin-left: 6px;
  font-weight: 700;
}

.vision-details[open] summary::after {
  content: "－";
}

.fade-line:nth-child(1) { animation-delay: 0.1s; }
.fade-line:nth-child(2) { animation-delay: 0.2s; }
.fade-line:nth-child(3) { animation-delay: 0.3s; }
.fade-line:nth-child(4) { animation-delay: 0.4s; }
.fade-line:nth-child(5) { animation-delay: 0.5s; }
.fade-line:nth-child(6) { animation-delay: 0.6s; }
.fade-line:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chart-placeholder {
  border: 1px dashed var(--border);
  background: rgba(15, 26, 38, 0.6);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--muted);
}

.dexscreener-embed {
  border: 1px solid var(--border);
  background: rgba(12, 20, 32, 0.6);
  border-radius: var(--radius);
  padding: 10px;
  min-height: 360px;
  display: grid;
  gap: 12px;
}

.dexscreener-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 10px;
  background: #0b0f14;
}

pre.mermaid {
  background: rgba(12, 20, 32, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  overflow-x: auto;
}

.diagram-image {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(12, 20, 32, 0.6);
  padding: 18px;
  display: flex;
  justify-content: center;
}

.diagram-image img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 10px;
  display: block;
}

.pool-table {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: rgba(12, 20, 32, 0.6);
  width: 100%;
}

.pool-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 2fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pool-row:last-child {
  border-bottom: none;
}

.pool-label {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.pool-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.copy-row {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.copy-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.copy-box input {
  flex: 1 1 320px;
  background: rgba(12, 20, 32, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 10px 12px;
  font-size: 14px;
}

.copy-status {
  color: var(--muted);
  font-size: 12px;
}

.trade-visual .section-title {
  margin-bottom: 16px;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.trade-card {
  margin: 0;
  background: rgba(12, 20, 32, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
}

.trade-card img {
  width: 100%;
  height: auto;
  display: block;
}

.trade-card figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.trade-steps {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.trade-step {
  background: rgba(12, 20, 32, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.trade-step h3 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.3;
}

.trade-step .step-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.step-list li {
  margin: 6px 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.trade-step-images {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.trade-step-images img {
  width: 75%;
  max-width: 75%;
  display: block;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(12, 20, 32, 0.6);
}

.trade-step a {
  color: #3aa3ff;
}

.trade-step a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: rgba(12, 20, 32, 0.45);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #e6ecff;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-answer {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.results-meta {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 16px;
}

.results-details {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.results-details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  list-style: none;
}

.results-details summary::marker {
  display: none;
}

.results-details summary::after {
  content: "＋";
  margin-left: 6px;
}

.results-details[open] summary::after {
  content: "－";
}

.results-details-body {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.results-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.results-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 12px;
}

.results-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(12, 20, 32, 0.6);
}

.coef-table {
  margin-top: 12px;
}

.coef-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.coef-graph {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.coef-graph-svg {
  width: 100%;
  height: auto;
  color: #3aa3ff;
}

.coef-graph-axes {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.coef-graph-labels {
  color: var(--muted);
  font-size: 14px;
}

.coef-equation {
  color: var(--muted);
  font-size: 14px;
}

.coef-axis {
  color: var(--muted);
  font-size: 14px;
}

.distribution-flow img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(12, 20, 32, 0.6);
}

.pool-muted {
  color: var(--muted);
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 18, 0.8);
}

footer .logo {
  font-size: 16px;
}

/* Keep support/donate section more neutral */
.support-section .card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: none;
}

.support-section .card:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .diagram-line { gap: 10px; }
  .diagram-arrow { font-size: 18px; }
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th, .table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}

.table th {
  color: var(--muted);
  font-weight: 600;
  width: 40%;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-links {
  display: grid;
  gap: 6px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.notice {
  border-left: 3px solid var(--accent-2);
  padding: 10px 14px;
  background: rgba(122, 162, 255, 0.08);
  border-radius: 8px;
  color: var(--muted);
}

.page-title {
  padding: 50px 0 20px;
}

.page-title h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

@media (max-width: 820px) {
  nav { gap: 10px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .intro-lines { gap: 10px; }
  .intro-line { font-size: clamp(20px, 6.2vw, 36px); }
  .intro-line.final { font-size: clamp(36px, 10vw, 64px); }
  .intro-skip {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
    padding: 6px 10px;
  }
  .prologue-cinematic {
    min-height: 240px;
    padding: 12px 0;
  }
  .prologue-show-all .fade-line {
    font-size: clamp(14px, 4.4vw, 20px);
  }
  .prologue-show-all .prologue-final {
    font-size: clamp(28px, 9vw, 52px);
  }
}

@media (max-width: 720px) {
  .trade-steps { gap: 12px; }
  .trade-step { padding: 14px; }
  .trade-step h3 { font-size: 24px; }
  .step-list { font-size: 16px; }
  .trade-step-images img {
    width: 100%;
    max-width: 100%;
  }
  .copy-box input {
    flex-basis: 100%;
  }
  .pool-value {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.2;
  }
  .pool-table {
    padding: 12px;
    gap: 10px;
  }
  .pool-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .pool-label {
    font-size: 13px;
  }
}
