/* ─────────────────────────────────────────────────────────────────────────────
   screen-home.css — Home Screen Styles
───────────────────────────────────────────────────────────────────────────── */

#screen-home {
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  min-height: 100vh;
}

.home-inner {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-icon {
  width: 48px; height: 48px;
  background: var(--brand);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
}

/* ── Mode Cards Grid ───────────────────────────────────────────────────────── */
.mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 56px;
}

/* Single card — centred on screen, fixed width */
.mode-cards-single {
  grid-template-columns: 420px;
  width: 420px;
  margin-top: 56px;
}

.mode-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.mode-card:hover {
  border-color: rgba(45,106,79,.35);
  box-shadow: 0 8px 28px rgba(45,106,79,.1);
  transform: translateY(-2px);
}

.mode-card .card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.mode-card h2         { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.mode-card p          { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.5; }
.mode-card .get-started {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .mode-cards        { grid-template-columns: 1fr; margin-top: 40px; }
  .mode-cards-single { grid-template-columns: 1fr; width: 100%; }
}