:root{
  --green: #0b3b24;
  --green-link: #0f7a45;
  --text: #103b2a;
  --muted: #2b4f3f;
}

/* ===== Base reset ===== */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

/* ===== Page base ===== */
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Split layout ===== */
.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 44% 56%;
}

/* ===== Left panel ===== */
.left {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
}

/* ===== Right image panel ===== */
.right{
  background-image: url("./bg3.png");
  background-size: cover;
  background-position: center;
  min-height: 520px;
}

/* ===== Content panel ===== */
.panel {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* ===== Logo ===== */
.logo {
  width: 180px;
  margin: 0 auto 24px;
  display: block;
}

/* ===== Headings ===== */
h1 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 600;
  color: var(--green);
}

.explorer {
  font-style: italic;
  font-weight: 500;
}

/* ===== Sub text ===== */
.sub {
  margin: 18px 0 18px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--muted);
}

.sub a {
  color: var(--green-link);
  text-decoration: none;
  font-weight: 500;
}

.sub a:hover {
  text-decoration: underline;
}

/* ===== Coming soon ===== */
.coming-soon {
  margin-top: 14px;
  margin-bottom: 24px; /* space before next paragraph */
  font-size: 28px;
  font-weight: 600;
  color: #e67e22;
  letter-spacing: 0.02em;
}
/* Space between “Coming soon.” and following paragraph */
.coming-soon + .sub {
  margin-top: 24px;
}
/* ===== Footer ===== */
.panel-footer {
  margin-top: auto;
  padding-top: 28px;
  font-size: 12px;
}

.panel-footer a {
  color: var(--green-link);
  text-decoration: none;
  font-weight: 500;
}

.panel-footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .right {
    min-height: 40vh;
  }
}
