body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: radial-gradient(circle at 15% 20%, #1b1b1b 0%, #090909 35%, #040404 100%);
  color: #d7a428;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 32px;
  box-sizing: border-box;
}

.visual-panel {
  flex: 1;
  min-height: 70vh;
  border: 1px solid #30230e;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)),
    linear-gradient(140deg, rgba(215, 164, 40, 0.2), rgba(215, 164, 40, 0.03) 35%, rgba(0, 0, 0, 0) 60%),
    url("/static/1798_Mitchell_Krog_PHOTO_canvas-wall-art-south-africa_livingcanvas-1.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.visual-content {
  padding: clamp(20px, 4vw, 42px);
  max-width: 650px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #d7a428;
  font-weight: 700;
  font-size: 12px;
}

.visual-content h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.3px;
}

.visual-copy {
  margin: 16px 0 0;
  color: #efe6d0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
}

.chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  border: 1px solid #5a4520;
  background: rgba(215, 164, 40, 0.08);
  color: #f3deb0;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
}

.right-panel {
  width: min(620px, 43vw);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #3d2f14;
  border-radius: 14px;
  background: linear-gradient(180deg, #121212, #0b0b0b);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.brand-logo {
  width: 170px;
  max-width: 40%;
  height: auto;
  object-fit: contain;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  color: #ffffff;
  letter-spacing: 1.1px;
}

.brand-text p {
  margin: 8px 0 0;
  color: #dfc380;
  font-size: 14px;
}

.control-card {
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid #3d2f14;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

#startWallBtn,
#stopWallBtn {
  border: 1px solid #6a4f1d;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

#startWallBtn {
  background: #d7a428;
  color: #000;
  box-shadow: 0 6px 18px rgba(215, 164, 40, 0.25);
}

#stopWallBtn {
  background: #151515;
  color: #ffffff;
}

#startWallBtn:hover,
#stopWallBtn:hover {
  transform: translateY(-1px);
}

#rotationStatus, #countdownLabel, #liveWallStatus {
  margin: 6px 0;
  font-size: 14px;
  color: #f1e2be;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
}

.stat-card {
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid #3d2f14;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.stat-card h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.stat-card p {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #d7a428;
}

@media (max-width: 900px) {
  .landing {
    flex-direction: column;
    padding: 16px;
  }

  .visual-panel {
    width: 100%;
    min-height: auto;
  }

  .right-panel {
    width: 100%;
    margin-left: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .brand-logo {
    width: 180px;
    max-width: 75vw;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
