/* SmartDeck Build 0.1.3 Home Screen */

.sd-home {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(0, 150, 255, 0.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 180, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #101826 45%, #05070c 100%);
  color: #f7fbff;
  font-family: Arial, Helvetica, sans-serif;
}

.sd-home.sd-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.sd-home-shell {
  width: min(980px, calc(100vw - 56px));
}

.sd-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.sd-logo-mark {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  color: #07101d;
  background: linear-gradient(135deg, #ffb21e, #ffffff);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.sd-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.sd-subtitle {
  margin-top: 8px;
  color: #b8c7da;
  font-size: 17px;
}

.sd-home-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.sd-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.sd-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 178, 30, 0.18);
  border: 1px solid rgba(255, 178, 30, 0.42);
  color: #ffe0a0;
  font-size: 13px;
  font-weight: 700;
}

.sd-pill-soft {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #d8e6f5;
}

.sd-home-card h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.sd-home-card p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #c7d3e2;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.45;
}

.sd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sd-btn {
  appearance: none;
  border: 0;
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.sd-btn:hover {
  transform: translateY(-2px);
}

.sd-btn-primary {
  color: #09111d;
  background: linear-gradient(135deg, #ffb21e, #ffffff);
  box-shadow: 0 14px 36px rgba(255, 178, 30, 0.28);
}

.sd-btn-secondary {
  color: #f7fbff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.sd-file-notice {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #fce8bd;
  background: rgba(255, 178, 30, 0.12);
  border: 1px solid rgba(255, 178, 30, 0.22);
}

.sd-file-notice.sd-show {
  display: block;
}

.sd-footer-line {
  margin-top: 18px;
  color: #8797aa;
  font-size: 14px;
  text-align: center;
}
