/* Page: Stake — unique components only. */

/* === NETWORK COMPARISON CARDS === */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--ink);
  margin: 36px 0;
}
.network-card {
  background: var(--paper);
  padding: 32px 28px;
  position: relative;
}
.network-card.best { background: linear-gradient(135deg, #f6f8f0 0%, #edf0e2 100%); }
.network-card.best::before {
  content: '★ RECOMMENDED';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sage);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  font-weight: 700;
}
.network-card .coin-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.coin-ticker {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.coin-name {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
}
.network-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.net-metric .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.net-metric .value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.net-metric .value.fast { color: var(--sage); }
.net-metric .value.slow { color: var(--carmine); }
.network-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  margin-top: 12px;
}

/* === AUD CONVERSION PANEL === */
.conversion-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 44px 42px;
  margin: 40px 0;
  position: relative;
}
.conversion-panel::before {
  content: 'CRYPTO → AUD';
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--paper);
  color: var(--ink);
  padding: 3px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  border: 1px solid var(--ink);
}
.conversion-panel h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
  font-style: italic;
}
.conversion-panel h4 em { color: var(--gold); }
.conv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(244, 241, 234, 0.2);
}
.conv-step {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.2);
  border-right: 1px solid rgba(244, 241, 234, 0.2);
}
.conv-step:last-child { border-right: none; }
.conv-step .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.conv-step h5 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 8px;
}
.conv-step p {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--paper-dark) !important;
  margin: 0 !important;
  opacity: 0.85;
}

/* === TAX WARNING === */
.tax-warning {
  background: linear-gradient(135deg, #fdf6f0 0%, #f9ebe1 100%);
  border: 2px solid var(--carmine);
  border-left-width: 8px;
  padding: 36px 42px;
  margin: 40px 0;
  position: relative;
}
.tax-warning::before {
  content: '⚖';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 56px;
  color: var(--carmine);
  opacity: 0.2;
}
.tax-warning .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--carmine);
  font-weight: 700;
  margin-bottom: 12px;
}
.tax-warning h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}
.tax-warning p {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--ink-soft) !important;
  max-width: 66ch;
}
.tax-warning .disclaimer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--carmine);
  font-size: 12px !important;
  font-style: italic;
  color: var(--muted) !important;
}

@media (max-width: 900px) {
  .conversion-panel { padding: 32px 24px; }
  .tax-warning { padding: 28px 24px; }
}
