:root {
  --l250-red: #d20a0a;
  --l250-red-dim: rgba(210, 10, 10, 0.35);
  --l250-gold: #c9a84c;
  --l250-black: #0a0a0a;
  --l250-black2: #111;
  --l250-black3: #191919;
  --l250-border: rgba(255, 255, 255, 0.08);
  --l250-gray: #888;
}

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

body.l250-page {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: var(--l250-black);
  color: #fff;
  overflow-x: hidden;
}

.l250-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--nav-offset) + 32px) 80px 80px;
}

.l250-back,
.l250-back:link,
.l250-back:visited {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #666;
  text-decoration: none;
  transition: color 0.15s ease;
}

.l250-back:hover,
.l250-back:focus-visible {
  color: #999;
  text-decoration: none;
}

.l250-mobile-back,
.l250-mobile-back:link,
.l250-mobile-back:visited {
  display: none;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--nav-ink) !important;
  text-decoration: none !important;
}

.l250-mobile-back:hover,
.l250-mobile-back:focus-visible {
  color: var(--nav-red) !important;
  text-decoration: none !important;
}

.l250-hero {
  display: grid;
  grid-template-columns: 1fr min(380px, 38%);
  gap: 32px 40px;
  align-items: stretch;
  margin-bottom: 40px;
}

.l250-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.l250-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--l250-red);
  margin-bottom: 12px;
}

.l250-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--l250-red);
  margin-right: 10px;
  vertical-align: middle;
}

.l250-title-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: 28px;
}

.l250-brand-logo {
  height: clamp(100px, 16vw, 160px);
  width: auto;
  border-radius: 10px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.l250-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin: 0;
}

.l250-title-row .l250-title {
  min-width: 0;
}

.l250-actions-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
}

.l250-contract {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--l250-black2);
  border: 1px solid var(--l250-border);
  flex: 1 1 280px;
  min-width: 0;
  transition:
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.l250-contract:hover {
  border-color: rgba(210, 10, 10, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.l250-hero-buy {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0 28px;
  background: var(--l250-red);
  border: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    opacity 0.2s;
}

.l250-hero-buy:hover:not(:disabled) {
  background: #b00000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(210, 10, 10, 0.35);
}

.l250-hero-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.l250-contract-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--l250-red);
  flex-shrink: 0;
}

.l250-contract-addr {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.l250-contract-copy {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.l250-contract-copy:hover { color: #fff; }
.l250-contract.copied .l250-contract-copy { color: var(--l250-gold); }

.l250-live-panel {
  background: var(--l250-black2);
  border: 1px solid var(--l250-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.l250-live-panel:hover {
  border-color: rgba(210, 10, 10, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.l250-live-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--l250-red);
}

.l250-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.l250-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--l250-red);
  box-shadow: 0 0 10px rgba(210, 10, 10, 0.8);
  animation: l250-pulse 1.8s ease-in-out infinite;
}

@keyframes l250-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.l250-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.l250-change {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.l250-change.is-up { color: #3dd68c; }
.l250-change.is-down { color: var(--l250-red); }
.l250-change.is-flat { color: var(--l250-gray); }

.l250-stat-rows { border-top: 1px solid var(--l250-border); }

.l250-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--l250-border);
}

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

.l250-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--l250-gray);
}

.l250-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.l250-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.l250-stat-box {
  background: var(--l250-black2);
  border: 1px solid var(--l250-border);
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.l250-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: height 0.3s ease, background 0.3s ease;
}

.l250-stat-box:hover {
  border-color: rgba(210, 10, 10, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  background: rgba(14, 14, 14, 0.96);
}

.l250-stat-box:hover::before {
  height: 3px;
  background: var(--l250-red);
}

.l250-stat-box .l250-stat-label { display: block; margin-bottom: 8px; }
.l250-stat-box .l250-stat-val { font-size: clamp(24px, 3vw, 32px); }

.l250-chart-section { margin-bottom: 48px; }

.l250-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.l250-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.5px;
  margin: 0;
}

.l250-section-title span { color: var(--l250-red); }

.l250-chart-frame {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: var(--l250-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.l250-chart-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--l250-red);
  z-index: 1;
  opacity: 0.85;
}

.l250-chart-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
  background: var(--l250-black);
  color-scheme: dark;
}

.l250-chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  color: var(--l250-gray);
  font-size: 15px;
  padding: 40px;
  text-align: center;
  line-height: 1.6;
}

.l250-chart-placeholder code {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.l250-ledger { margin-bottom: 48px; }

.l250-ledger-box {
  position: relative;
  background:
    linear-gradient(135deg, rgba(210, 10, 10, 0.06) 0%, transparent 42%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(255, 255, 255, 0.025) 23px,
      rgba(255, 255, 255, 0.025) 24px
    ),
    var(--l250-black2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 36px 32px 40px;
  overflow: hidden;
}

.l250-ledger-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--l250-red-dim);
  pointer-events: none;
  transform: translate(6px, 6px);
  z-index: 0;
}

.l250-ledger-inner { position: relative; z-index: 1; }

.l250-ledger-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--l250-red);
  margin-bottom: 20px;
}

.l250-ledger-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--l250-red);
  box-shadow: 0 0 12px rgba(210, 10, 10, 0.9);
  animation: l250-pulse 1.8s ease-in-out infinite;
}

.l250-fees-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.l250-fees-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.l250-fees-unit {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--l250-red);
  letter-spacing: 1px;
}

.l250-fees-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--l250-gray);
  line-height: 1.55;
  letter-spacing: 0.3px;
}

.l250-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.l250-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 640px);
  padding: 22px 48px;
  background: var(--l250-red);
  border: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  box-shadow: 0 12px 40px rgba(210, 10, 10, 0.35);
}

.l250-buy-btn:hover:not(:disabled) {
  background: #b00000;
  transform: translateY(-2px);
}

.l250-buy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.l250-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 80px 48px;
  border-top: 1px solid var(--l250-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--l250-gray);
  font-size: 13px;
}

.l250-footer-logo {
  height: 56px;
  border-radius: 6px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  opacity: 0.92;
}

.l250-footer-contact {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.l250-footer-contact:hover {
  color: var(--l250-red);
}

@media (max-width: 1100px) {
  .l250-wrap { padding: calc(var(--nav-offset) + 28px) 40px 64px; }
  .l250-footer { padding: 32px 40px 48px; }
}

@media (max-width: 800px) {
  .l250-wrap { padding: calc(var(--nav-offset) + 24px) 20px 56px; }
  .l250-back { display: none; }
  .l250-mobile-back { display: block; }
  .l250-hero { grid-template-columns: 1fr; }
  .l250-actions-row { flex-direction: column; }
  .l250-hero-buy { width: 100%; padding: 16px 24px; }
  .l250-stats-strip { grid-template-columns: 1fr; }
  .l250-chart-frame iframe { height: 440px; }
  .l250-ledger-box { padding: 28px 20px 32px; }
  .l250-footer { padding: 28px 20px 40px; }
}
