:root {
  color-scheme: dark;
  --bg: #03050d;
  --panel: rgba(4, 8, 18, 0.88);
  --panel-soft: rgba(8, 12, 24, 0.70);
  --text: #d8edff;
  --muted: #8db7ff;
  --accent: #4ff7ff;
  --accent-strong: #7a64ff;
  --accent-soft: rgba(79, 247, 255, 0.14);
  --border: rgba(79, 247, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(38, 126, 255, 0.12), transparent 22%),
              radial-gradient(circle at 75% 10%, rgba(121, 88, 255, 0.12), transparent 18%),
              linear-gradient(180deg, #02030a 0%, #03050f 55%, #080d1e 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  overflow-x: hidden;
}

.lp-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px 40px;
}

.lp-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(79, 247, 255, 0.14), transparent 8%),
    radial-gradient(circle at 80% 10%, rgba(123, 92, 255, 0.1), transparent 10%),
    radial-gradient(circle at 60% 70%, rgba(0, 229, 255, 0.08), transparent 12%),
    linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.lp-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  backdrop-filter: blur(20px);
  background: rgba(5, 10, 20, 0.78);
  border: 1px solid rgba(79, 247, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lp-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.lp-brand-mark {
  padding: 10px 14px;
  background: rgba(0, 229, 255, 0.14);
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.lp-brand-name {
  font-size: 1rem;
  letter-spacing: 0.28em;
  color: var(--text);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-top-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  border: 1px solid rgba(79, 247, 255, 0.18);
  padding: 10px 16px;
  border-radius: 999px;
}

.lp-top-tag {
  color: rgba(231, 243, 255, 0.74);
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.lp-nav a:hover,
.lp-nav a.active {
  color: var(--accent);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-pill-button {
  padding: 12px 20px;
}

.lp-button-outline {
  background: transparent;
  border: 1px solid rgba(79, 247, 255, 0.2);
  color: var(--accent);
}

.lp-bspr-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.16);
  color: var(--text);
}

.lp-bspr-pill span {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  opacity: 0.75;
}

.lp-bspr-pill strong {
  font-size: 0.98rem;
}

.lp-button {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-button:disabled,
.lp-button-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none !important;
  box-shadow: none !important;
}

.lp-button:hover {
  transform: translateY(-1px);
}

.lp-button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #01050d;
  box-shadow: 0 16px 34px rgba(0, 229, 255, 0.2);
}

.lp-button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-link-button {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.lp-hero-badges .lp-pill {
  padding: 10px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  background: rgba(72, 163, 255, 0.12);
  color: rgba(231, 243, 255, 0.92);
}

.lp-hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-hero-stat-strip div {
  display: grid;
  gap: 8px;
}

.lp-hero-stat-strip span {
  color: rgba(231, 243, 255, 0.68);
  font-size: 0.85rem;
}

.lp-hero-stat-strip strong {
  font-size: 1.15rem;
}

.lp-main {
  margin-top: 28px;
  display: grid;
  gap: 28px;
}

.lp-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(8, 12, 24, 0.92);
  border: 1px solid rgba(79, 247, 255, 0.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(79, 247, 255, 0.08), transparent 18%),
              radial-gradient(circle at 80% 15%, rgba(122, 100, 255, 0.06), transparent 18%);
  pointer-events: none;
}

.lp-hero-copy {
  display: grid;
  gap: 20px;
  z-index: 1;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(79, 247, 255, 0.08), transparent 16%),
    radial-gradient(circle at 70% 15%, rgba(122, 100, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(0, 229, 255, 0.06), transparent 20%);
  pointer-events: none;
}

.lp-hero-copy {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.lp-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.lp-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.lp-hero p {
  margin: 0;
  max-width: 560px;
  line-height: 1.7;
  color: rgba(231, 243, 255, 0.8);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-hero-visual {
  display: grid;
  place-items: center;
}

.lp-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 64px 0 48px;
  min-height: 720px;
  background: linear-gradient(180deg, rgba(6, 14, 35, 0.96) 0%, rgba(5, 8, 18, 0.95) 100%);
}

.lp-hero-copy {
  display: grid;
  gap: 24px;
}

.lp-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.lp-hero p {
  max-width: 580px;
  font-size: 1.05rem;
  color: rgba(231, 243, 255, 0.82);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button-primary {
  background: linear-gradient(135deg, #31e5ff, #6764ff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #091025;
}

.lp-button-primary:hover {
  box-shadow: 0 18px 40px rgba(49, 229, 255, 0.24);
}

.lp-button-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(231, 243, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lp-button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.lp-hero p,
.lp-hero-actions {
  z-index: 1;
}

.lp-hero .lp-pill {
  background: rgba(255, 255, 255, 0.06);
}

.lp-section {
  padding: 42px 0;
}

.lp-coin-market {
  padding: 28px;
  background: linear-gradient(180deg, rgba(13, 21, 40, 0.96), rgba(3, 8, 18, 0.98));
  border: 1px solid rgba(79, 247, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.lp-coin-card {
  position: relative;
  overflow: hidden;
}

.lp-coin-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(49, 229, 255, 0.16), transparent 32%),
              radial-gradient(circle at bottom right, rgba(116, 78, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.lp-coin-card > * {
  position: relative;
}

.lp-coin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.lp-coin-market-header button {
  min-width: 180px;
}

.lp-panel {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-panel:hover {
  transform: translateY(-3px);
}

@media (max-width: 1040px) {
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
  width: 100%;
  min-height: 420px;
  padding: 24px;
  background: rgba(5, 8, 18, 0.96);
  border: 1px solid rgba(79, 247, 255, 0.14);
  border-radius: 28px;
  box-shadow: inset 0 0 36px rgba(79, 247, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.lp-visual-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(79, 247, 255, 0.82);
  margin-bottom: 16px;
}

.lp-visual-scene {
  position: relative;
  height: 240px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(79, 247, 255, 0.08), transparent 58%),
              radial-gradient(circle at 35% 40%, rgba(122, 100, 255, 0.1), transparent 12%),
              radial-gradient(circle at 65% 35%, rgba(0, 229, 255, 0.1), transparent 14%);
  margin-bottom: 22px;
  overflow: hidden;
}

.lp-visual-scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.lp-visual-scene .lp-node {
  position: absolute;
  transition: transform 0.3s ease;
}

.lp-visual-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.14;
}

.lp-node {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(79, 247, 255, 0.35);
}

.lp-node-core {
  width: 86px;
  height: 86px;
  left: calc(50% - 43px);
  top: calc(50% - 49px);
  background: radial-gradient(circle, rgba(79, 247, 255, 0.95), rgba(11, 25, 56, 0.35));
  border: 1px solid rgba(79, 247, 255, 0.7);
}

.lp-node-orbit {
  width: 16px;
  height: 16px;
  background: rgba(79, 247, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lp-node-1 { left: 18%; top: 28%; }
.lp-node-2 { left: 75%; top: 22%; }
.lp-node-3 { left: 60%; top: 72%; }

.lp-node-orbit::before {
  content: '';
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.lp-visual-grid {
  display: grid;
  gap: 16px;
}

.lp-visual-grid div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(79, 247, 255, 0.08);
}

.lp-visual-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 18px;
}

.lp-visual-grid span {
  color: rgba(231, 243, 255, 0.68);
  font-size: 0.8rem;
}

.lp-visual-grid strong {
  font-size: 1.3rem;
}

.lp-section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.lp-section-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.lp-section-header p {
  margin: 0;
  color: rgba(231, 243, 255, 0.78);
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-coin-market-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(79, 247, 255, 0.08);
  margin-bottom: 20px;
}

.lp-coin-market-meta {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.lp-coin-market-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-coin-market-summary div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-coin-market-summary span {
  display: block;
  color: rgba(231, 243, 255, 0.75);
  font-size: 0.82rem;
}

.lp-coin-market-summary strong {
  font-size: 1.2rem;
}

.lp-coin-market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-filter-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(231, 243, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-filter-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.lp-filter-active {
  background: linear-gradient(135deg, rgba(49, 229, 255, 0.18), rgba(103, 100, 255, 0.16));
  border-color: rgba(49, 229, 255, 0.26);
}

.lp-empty-state {
  padding: 40px;
  text-align: center;
  color: rgba(231, 243, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-coin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-coin-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(9, 15, 28, 0.9);
  border: 1px solid rgba(79, 247, 255, 0.08);
  box-shadow: inset 0 0 30px rgba(79, 247, 255, 0.05);
  cursor: pointer;
}

.lp-coin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-coin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.lp-coin-status {
  font-size: 0.8rem;
  color: rgba(231, 243, 255, 0.75);
}

.lp-coin-description {
  margin: 0 0 16px;
  color: rgba(231, 243, 255, 0.78);
  line-height: 1.7;
}

.lp-coin-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  color: rgba(231, 243, 255, 0.7);
}

.lp-coin-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.lp-coin-card small {
  color: rgba(231, 243, 255, 0.62);
}

.lp-coin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp-coin-stats > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .lp-coin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lp-coin-grid,
  .lp-grid-2 {
    grid-template-columns: 1fr;
  }
}

.lp-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(8, 12, 24, 0.92);
  border: 1px solid rgba(79, 247, 255, 0.08);
  box-shadow: var(--shadow);
}

.lp-card-accent {
  background: rgba(79, 247, 255, 0.06);
  border-color: rgba(79, 247, 255, 0.18);
}

.lp-card-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-card p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: rgba(231, 243, 255, 0.8);
}

.lp-card ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: rgba(231, 243, 255, 0.82);
  list-style: none;
}

.lp-card ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
}

.lp-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.lp-panel {
  background: rgba(6, 10, 20, 0.94);
  border: 1px solid rgba(79, 247, 255, 0.12);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.lp-panel-glow {
  box-shadow: 0 24px 60px rgba(0, 229, 255, 0.16);
}

.lp-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.lp-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-stat-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-stat-card span {
  display: block;
  color: rgba(231, 243, 255, 0.72);
  margin-bottom: 10px;
}

.lp-stat-card strong {
  font-size: 1.6rem;
  display: block;
}

.lp-stat-card small {
  color: rgba(231, 243, 255, 0.55);
}

.lp-log {
  margin-top: 22px;
  min-height: 190px;
  max-height: 300px;
  overflow-y: auto;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(79, 247, 255, 0.08);
  color: rgba(209, 233, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lp-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.lp-sidebar {
  display: grid;
  gap: 18px;
}

.lp-widget {
  background: rgba(4, 8, 18, 0.96);
  border-radius: 26px;
  border: 1px solid rgba(79, 247, 255, 0.08);
  padding: 20px;
  box-shadow: inset 0 0 24px rgba(79, 247, 255, 0.04);
}

.lp-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.lp-widget-header h4 {
  margin: 0;
  font-size: 1rem;
}

.lp-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.lp-widget-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(231, 243, 255, 0.82);
}

.lp-chat-box {
  min-height: 260px;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 14px;
}

.lp-chat-send {
  display: grid;
  gap: 8px;
}

.lp-chat-send input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.lp-chat-send button {
  width: 100%;
}

.lp-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: 999px;
  background: rgba(3, 7, 16, 0.92);
  border: 1px solid rgba(79, 247, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
}

.lp-strip span {
  flex: 1 1 150px;
  min-width: 140px;
  padding: 18px 20px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(231, 243, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.lp-strip span:hover {
  background: rgba(0, 229, 255, 0.12);
}

.lp-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lp-timeline article {
  padding: 24px;
  border-radius: 28px;
  background: rgba(8, 14, 28, 0.97);
  border: 1px solid rgba(0, 229, 255, 0.08);
  box-shadow: var(--shadow);
}

.lp-timeline strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-timeline h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.lp-timeline p {
  margin: 0;
  color: rgba(231, 243, 255, 0.76);
  line-height: 1.75;
}

.lp-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bed-panel {
  min-height: 160px;
  padding: 18px;
  background: rgba(6, 10, 20, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bed-panel-body {
  color: rgba(231, 243, 255, 0.78);
}

.lp-footer {
  margin-top: 36px;
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  background: rgba(4, 8, 20, 0.8);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-footer-logo {
  font-size: 0.95rem;
}

.lp-footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(231, 243, 255, 0.72);
}

.lp-footer-trust svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.lp-footer-links {
  display: flex;
  gap: 16px;
}

.lp-footer-links a {
  color: rgba(231, 243, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.lp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 20px;
}

.lp-modal-overlay.hidden {
  display: none;
}

.lp-modal {
  width: min(760px, 100%);
  background: rgba(8, 14, 28, 0.99);
  border-radius: 30px;
  padding: 28px;
  border: 1px solid rgba(0, 229, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lp-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-modal-title {
  margin: 0;
  font-size: 1.5rem;
}

.lp-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
}

.lp-modal-body {
  display: grid;
  gap: 18px;
}

.lp-form-row {
  display: grid;
  gap: 10px;
}

.lp-form-row label {
  font-size: 0.85rem;
  color: rgba(231, 243, 255, 0.78);
}

.lp-form-row input,
.lp-form-row select,
.lp-form-row textarea,
.lp-form-row input[type="range"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.lp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.lp-wizard-option {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lp-wizard-option:hover,
.lp-wizard-option-selected {
  transform: translateY(-2px);
  border-color: rgba(79, 247, 255, 0.22);
  background: rgba(79, 247, 255, 0.1);
}

.lp-wizard-option strong {
  display: block;
  font-size: 1.05rem;
}

.lp-wizard-option span {
  color: rgba(231, 243, 255, 0.78);
  font-size: 0.95rem;
}

.lp-wizard-step {
  display: grid;
  gap: 18px;
}

.lp-wizard-options {
  display: grid;
  gap: 14px;
}

.lp-range-value {
  display: block;
  margin-top: 8px;
  color: rgba(231, 243, 255, 0.85);
}

/* ============================================================================
 * TELEMETRY DASHBOARD STYLES
 * ============================================================================ */

.telemetry-modal {
  max-height: 90vh;
  overflow-y: auto;
}

.telemetry-dashboard-panel {
  display: grid;
  gap: 32px;
}

.telemetry-dashboard-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.telemetry-dashboard-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--accent);
}

.telemetry-dashboard-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.telemetry-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.telemetry-filter {
  padding: 10px 14px;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.telemetry-filter:hover {
  background: var(--panel);
  border-color: var(--accent-soft);
}

.telemetry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
}

.telemetry-section {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.telemetry-section h3 {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.telemetry-full-width {
  grid-column: 1 / -1;
}

/* Statistics Grid */
.telemetry-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .telemetry-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.telemetry-stat-card {
  background: var(--panel);
  border: 1px solid rgba(79, 247, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.telemetry-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.telemetry-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

/* Event Type Chart */
.telemetry-chart-container {
  display: grid;
  gap: 12px;
}

.telemetry-chart-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  gap: 12px;
  align-items: center;
}

.telemetry-chart-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.telemetry-chart-bar {
  height: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.telemetry-chart-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.3s;
}

.telemetry-chart-value {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

/* Event Stream */
.telemetry-event-stream {
  display: grid;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.telemetry-event-stream::-webkit-scrollbar {
  width: 6px;
}

.telemetry-event-stream::-webkit-scrollbar-track {
  background: transparent;
}

.telemetry-event-stream::-webkit-scrollbar-thumb {
  background: rgba(79, 247, 255, 0.3);
  border-radius: 3px;
}

.telemetry-event-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s;
}

.telemetry-event-card:hover {
  background: rgba(79, 247, 255, 0.05);
  border-color: var(--accent-soft);
}

.telemetry-event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.telemetry-event-type {
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}

.telemetry-event-time {
  color: var(--muted);
  font-size: 11px;
}

.telemetry-event-description {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}

.telemetry-event-critical {
  margin-top: 8px;
  padding: 6px 8px;
  background: rgba(255, 94, 94, 0.1);
  border: 1px solid rgba(255, 94, 94, 0.3);
  border-radius: 4px;
  font-size: 11px;
  color: #FF5E5E;
  font-weight: 600;
}

/* Spinning animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#telemetry-refresh-btn.spinning {
  animation: spin 1s linear;
}

.lp-wizard-summary {
  display: grid;
  gap: 22px;
}

.lp-wizard-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-wizard-summary-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-coin-detail-modal {
  display: grid;
  gap: 20px;
}

.lp-coin-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-coin-detail-meta {
  display: grid;
  gap: 6px;
  align-items: end;
}

.lp-coin-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-coin-detail-grid div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-coin-detail-grid span {
  display: block;
  color: rgba(231, 243, 255, 0.7);
  margin-bottom: 8px;
}

.lp-coin-detail-chart {
  display: grid;
  gap: 14px;
}

.lp-bar {
  display: grid;
  gap: 8px;
}

.lp-bar span {
  color: rgba(231, 243, 255, 0.75);
}

.lp-bar strong {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 247, 255, 0.95), rgba(122, 100, 255, 0.75));
  position: relative;
}

.lp-network-dot {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(97, 255, 136, 0.95);
  box-shadow: 0 0 10px rgba(97, 255, 136, 0.5);
}

.lp-network-dot-warning {
  background: rgba(255, 215, 112, 0.95);
  box-shadow: 0 0 10px rgba(255, 215, 112, 0.5);
}

.lp-network-dot-offline {
  background: rgba(255, 100, 100, 0.95);
  box-shadow: 0 0 10px rgba(255, 100, 100, 0.5);
}

.lp-coin-market-trending {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-trending-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(79, 247, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(79, 247, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp-trending-badge:hover {
  transform: translateY(-2px);
  background: rgba(79, 247, 255, 0.16);
}

.lp-activity-chart {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.lp-activity-chart h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: rgba(231, 243, 255, 0.9);
}

.lp-activity-row {
  display: grid;
  gap: 8px;
}

.lp-activity-row strong {
  display: block;
  height: 12px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 247, 255, 0.95), rgba(122, 100, 255, 0.75));
}

.lp-activity-row span {
  color: rgba(231, 243, 255, 0.74);
  font-size: 0.85rem;
}

.lp-tour-button {
  border-color: rgba(79, 247, 255, 0.22);
}

.lp-tour-button:hover {
  background: rgba(79, 247, 255, 0.14);
}

.lp-modal-note {
  color: rgba(0, 229, 255, 0.72);
  font-size: 0.95rem;
}

.lp-modal-summary {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
  color: rgba(231, 243, 255, 0.82);
}

@media (max-width: 1180px) {
  .lp-hero {
    grid-template-columns: 1fr;
  }
  .lp-grid-2,
  .lp-panel-grid,
  .lp-timeline {
    grid-template-columns: 1fr;
  }
  .lp-section.lp-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .lp-shell {
    padding: 18px 18px 32px;
  }
  .lp-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-header-actions {
    justify-content: space-between;
  }
}
