:root {
  --background: hsl(0 0% 2%);
  --foreground: hsl(0 0% 90%);
  --border: hsl(0 0% 12%);
  --card: hsl(0 0% 4%);
  --primary: hsl(110 100% 54%);
  --primary-foreground: hsl(0 0% 0%);
  --secondary: hsl(42 100% 50%);
  --secondary-foreground: hsl(0 0% 0%);
  --muted: hsl(0 0% 12%);
  --muted-foreground: hsl(0 0% 60%);
  --app-font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --app-font-mono: 'Space Mono', ui-monospace, monospace;
  --radius: 0.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--app-font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

.font-mono { font-family: var(--app-font-mono); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsl(0 0% 2% / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-primary {
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
}

.logo-muted {
  font-family: var(--app-font-mono);
  font-size: 0.7rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
}

.nav-links {
  display: none;
  gap: 1.25rem;
}

.nav-links a {
  font-family: var(--app-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--app-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.65rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.8rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: hsl(110 100% 48%);
  border-color: hsl(110 100% 48%);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: hsl(110 100% 54% / 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: hsl(110 100% 54% / 0.5);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: hsl(110 100% 54% / 0.05);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bull {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 700px);
  height: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(0.2) contrast(1.25);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, hsl(0 0% 2% / 0.6) 50%, var(--background) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--app-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid hsl(110 100% 54% / 0.4);
  color: var(--primary);
}

.badge-live { border-color: hsl(110 100% 54% / 0.5); }

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 hsl(110 100% 54% / 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px hsl(110 100% 54% / 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.title-white {
  display: block;
  color: hsl(0 0% 85%);
}

.title-green {
  display: block;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  max-width: 32rem;
}

.hero-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.disclaimer-box {
  font-family: var(--app-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid hsl(42 100% 50% / 0.4);
  padding: 0.5rem 1rem;
  background: hsl(42 100% 50% / 0.05);
}

.ca-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border);
  background: hsl(0 0% 4% / 0.8);
  max-width: 100%;
}

.ca-label { color: var(--muted-foreground); }
.ca-address { color: var(--primary); word-break: break-all; }

.ca-copy-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  transition: color 0.15s;
}

.ca-copy-btn:hover { color: var(--primary); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-risk {
  font-size: 0.65rem;
  line-height: 1.7;
  color: hsl(0 0% 40%);
  max-width: 40rem;
  margin-top: 1rem;
}

/* SECTIONS */
.section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.section-alt { background: hsl(0 0% 3%); }

.section-label {
  font-family: var(--app-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-label-secondary { color: var(--secondary); }

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.section-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

/* BRIDGE */
.bridge-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

.bridge-badge {
  display: inline-block;
  font-family: var(--app-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid hsl(42 100% 50% / 0.4);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.bridge-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .bridge-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
  }
}

.bridge-field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.bridge-input-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  background: hsl(0 0% 2%);
  padding: 0.75rem 1rem;
}

.chain-badge {
  font-family: var(--app-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.1em;
}

.chain-badge.sol {
  background: hsl(110 100% 54% / 0.15);
  color: var(--primary);
  border: 1px solid hsl(110 100% 54% / 0.3);
}

.chain-badge.eth {
  background: hsl(220 100% 60% / 0.15);
  color: hsl(220 100% 70%);
  border: 1px solid hsl(220 100% 60% / 0.3);
}

.bridge-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 1.25rem;
  min-width: 0;
}

.token-label {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

.bridge-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  padding: 0.5rem;
}

.bridge-note {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

/* FEATURES */
.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  background: var(--card);
  padding: 1.5rem;
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.info-box {
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 2;
  display: inline-block;
}

/* VAULT */
.vault-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

.vault-badge {
  display: inline-block;
  font-family: var(--app-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid hsl(42 100% 50% / 0.4);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.vault-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.vault-title { font-size: 0.7rem; letter-spacing: 0.15em; }
.vault-meta { font-size: 0.6rem; letter-spacing: 0.1em; }

.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: hsl(0 0% 3%);
  padding: 1.25rem;
}

.stat-icon { color: var(--primary); margin-bottom: 0.75rem; }
.stat-label { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-sub { font-size: 0.65rem; color: var(--muted-foreground); }

/* TWO COL */
.two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.terminal-card, .thesis-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}

.terminal-title, .thesis-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.terminal-stat {
  background: hsl(0 0% 3%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terminal-stat span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.terminal-stat span:last-child { font-size: 1rem; }

.thesis-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.wallet-box {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: hsl(0 0% 2%);
  margin-bottom: 1rem;
}

.holding-value {
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem;
  border: 1px solid hsl(110 100% 54% / 0.3);
  background: hsl(110 100% 54% / 0.05);
  text-align: center;
  margin-bottom: 1rem;
}

.checklist {
  font-size: 0.7rem;
  line-height: 2;
  color: var(--muted-foreground);
}

.check { color: var(--primary); margin-right: 0.5rem; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner { text-align: center; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: hsl(0 0% 35%);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  z-index: 200;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* CHART */
.chart-card {
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.chart-embed {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.chart-fallback {
  font-size: 0.7rem;
  text-align: center;
  padding: 1rem;
  color: var(--muted-foreground);
}

.chart-fallback a { color: var(--primary); }

/* LP PODS */
.section-title-sm { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.compare-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

.compare-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}

.compare-card-active {
  border-color: hsl(110 100% 54% / 0.4);
  background: hsl(110 100% 54% / 0.03);
}

.compare-icon { color: var(--primary); margin-bottom: 1rem; }

.compare-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.compare-card p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.lp-intro { margin-bottom: 2rem; }

.steps-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .steps-row { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
}

.step-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
}

.step-num {
  font-size: 2rem;
  color: hsl(110 100% 54% / 0.2);
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.step-arrow {
  display: none;
  color: var(--primary);
  font-size: 1.25rem;
  padding-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .step-arrow { display: block; }
}

.genesis-pod {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  margin-bottom: 2rem;
}

.genesis-badge {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.genesis-title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.genesis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.genesis-stat {
  background: hsl(0 0% 3%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.genesis-stat span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.notice-box {
  font-size: 0.65rem;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border: 1px solid var(--border);
}

.notice-green {
  border-color: hsl(110 100% 54% / 0.3);
  color: var(--muted-foreground);
}

.notice-orange {
  border-color: hsl(42 100% 50% / 0.3);
  color: hsl(42 100% 50% / 0.8);
}

.lineup-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.pod-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .pod-grid { grid-template-columns: repeat(3, 1fr); }
}

.pod-card {
  background: var(--card);
  padding: 1.25rem;
}

.pod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.pod-pair {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pod-desc {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* TAGS */
.tag {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
}

.tag-live {
  color: var(--primary);
  border-color: hsl(110 100% 54% / 0.4);
}

.tag-done, .tag-target, .tag-progress {
  color: var(--muted-foreground);
  border-color: var(--border);
}

.tag-concept {
  color: var(--secondary);
  border-color: hsl(42 100% 50% / 0.4);
}

/* ROADMAP */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  position: relative;
}

.roadmap-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.4rem;
  top: 3rem;
  bottom: 0;
  width: 1px;
  background: hsl(110 100% 54% / 0.3);
}

.roadmap-num {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(110 100% 54% / 0.4);
  color: var(--primary);
  font-size: 0.85rem;
  background: var(--background);
  position: relative;
  z-index: 1;
}

.roadmap-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.roadmap-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.roadmap-card-header h3 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.roadmap-cat {
  margin-left: auto;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.roadmap-list {
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.roadmap-list li::before {
  content: '■';
  color: var(--primary);
  font-size: 0.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* LISTINGS */
.listings-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(3, 1fr); }
}

.listing-card {
  background: var(--card);
  padding: 1.25rem;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.listing-card p {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* CTA BOX */
.cta-box {
  border: 1px solid hsl(110 100% 54% / 0.3);
  background: hsl(110 100% 54% / 0.03);
  padding: 3rem 2rem;
  text-align: center;
}

.center-desc { margin-left: auto; margin-right: auto; }

/* JOIN */
.join-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .join-steps { grid-template-columns: repeat(3, 1fr); }
}

.join-num {
  font-size: 3rem;
  color: hsl(0 0% 15%);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.join-step h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.join-step p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-outline-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: hsl(42 100% 50% / 0.5);
}

.btn-outline-secondary:hover {
  background: hsl(42 100% 50% / 0.08);
}

.join-ca {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  word-break: break-all;
  margin-bottom: 3rem;
}

.trail-title { margin-bottom: 1.5rem; }

.trail-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .trail-grid { grid-template-columns: repeat(2, 1fr); }
}

.trail-card {
  display: block;
  background: var(--card);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.15s;
}

.trail-card:hover { background: hsl(0 0% 6%); }

.trail-name {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.trail-desc {
  display: block;
  font-size: 0.65rem;
  color: var(--muted-foreground);
}

.trail-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted-foreground);
}

.radar-box {
  font-size: 0.7rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.footer-disclaimer {
  font-size: 0.6rem;
  line-height: 1.6;
  color: hsl(0 0% 35%);
  max-width: 40rem;
  margin: 0 auto 1rem;
}
