.is-home .overview-grid,
.is-home .quick-grid,
.is-home #actions,
.is-home #status,
.is-home #logs,
.is-home .toast-wrap {
  display: none !important;
}

.landing-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.landing-card {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(18, 17, 38, 0.98), rgba(15, 14, 31, 0.98));
  border: 1px solid rgba(144, 115, 255, 0.18);
  box-shadow: 0 16px 50px rgba(53, 16, 102, 0.35);
}

.landing-card h3 {
  margin: 0 0 20px;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-card-icon {
  font-size: 24px;
}

.landing-card-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.landing-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ddd2ff;
}

.landing-feature-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 18px rgba(138, 63, 252, 0.18));
}

.landing-feature-item span {
  display: block;
}

.landing-rule-layout {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  height: calc(100% - 60px);
}

.landing-rule-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-rule-left img {
  width: 100%;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

.rule-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 160px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #b7aed4;
}

.legend-item strong {
  color: #fff;
  margin-right: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.dot-purple {
  background: #8a3ffc;
  box-shadow: 0 0 8px rgba(138, 63, 252, 0.4);
}

.dot-yellow {
  background: #ffc400;
  box-shadow: 0 0 8px rgba(255, 196, 0, 0.4);
}

.landing-rule-right {
  flex: 1;
  display: flex;
  height: 100%;
}

.rule-dividend-card {
  width: 100%;
  background: rgba(23, 24, 52, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rule-dividend-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 16px rgba(255, 196, 0, 0.15));
}

.rule-dividend-card p {
  margin: 0;
  color: #f6f2ff;
  font-size: 13px;
  line-height: 1.8;
}

.landing-seed-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.landing-seed-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 18, 46, 0.6), rgba(12, 10, 26, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ddd2ff;
  position: relative;
}

.seed-yellow {
  border-color: rgba(255, 196, 0, 0.28);
  box-shadow: inset 0 0 20px rgba(255, 196, 0, 0.04);
}

.seed-purple {
  border-color: rgba(138, 63, 252, 0.35);
  box-shadow: inset 0 0 20px rgba(138, 63, 252, 0.05);
}

.seed-blue {
  border-color: rgba(28, 186, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(28, 186, 255, 0.05);
}

.seed-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seed-card-head img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.seed-card-head strong {
  font-size: 22px;
  color: #fff;
}

.seed-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seed-attr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.seed-attr span {
  color: #b7aed4;
  white-space: nowrap;
}

.seed-attr em {
  font-style: normal;
  color: #fff;
  text-align: right;
}

.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 2, 16, 0.78);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.guide-modal.hidden {
  display: none;
}

.guide-panel {
  width: min(680px, 100%);
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(18, 17, 38, 0.98), rgba(15, 14, 31, 0.98));
  border: 1px solid rgba(144, 115, 255, 0.2);
  box-shadow: 0 20px 60px rgba(53, 16, 102, 0.45);
  position: relative;
}

.guide-panel h3 {
  margin: 0 0 16px;
  font-size: 30px;
}

.guide-panel ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #ddd2ff;
  line-height: 1.9;
}

.guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.landing-footer-card {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 17, 38, 0.98), rgba(15, 14, 31, 0.98));
  border: 1px solid rgba(144, 115, 255, 0.18);
  box-shadow: 0 16px 50px rgba(53, 16, 102, 0.35);
}

.landing-footer-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.landing-footer-card p {
  margin: 0;
  color: #b7aed4;
  line-height: 1.8;
}

.landing-footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .landing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .landing-seed-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-rule-layout {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .landing-footer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.home-footer-disclaimer {
  max-width: 600px;
  text-align: center;
}

.home-footer-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .landing-card {
    padding: 18px;
    border-radius: 18px;
  }

  .landing-card h3 {
    font-size: 22px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .landing-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-seed-cards {
    grid-template-columns: 1fr;
  }

  .landing-feature-item img {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }

  .seed-card-head {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .seed-card-head img {
    width: 54px;
    height: 54px;
  }

  .seed-card-head strong {
    font-size: 20px;
  }

  .seed-attr {
    font-size: 12px;
  }

  .landing-rule-left img {
    max-width: 150px;
  }

  .rule-dividend-card {
    padding: 18px 12px;
  }

  .landing-footer-card {
    padding: 18px;
  }

  .landing-footer-card h3 {
    font-size: 24px;
  }

  .landing-footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .landing-footer-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .home-footer-brand {
    justify-content: center;
  }

  .home-footer-socials {
    justify-content: center;
  }

  .home-footer-disclaimer {
    text-align: center;
  }
}