* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #eef4ff;
  background:
    linear-gradient(90deg, rgba(7, 17, 34, 0.9) 0%, rgba(7, 17, 34, 0.68) 42%, rgba(7, 17, 34, 0.48) 100%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.welcome-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: stretch;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem);
}

.welcome-layout {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(240px, 360px);
  gap: 1rem;
  align-items: center;
}

.welcome-panel,
.service-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.54), rgba(10, 22, 40, 0.26));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.welcome-panel {
  width: 100%;
}

.service-cards {
  display: grid;
  gap: 0.8rem;
}

.service-card {
  padding: 1rem;
}

.service-card span {
  color: #ffd700;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card strong {
  display: block;
  color: #eef4ff;
  font-size: 1rem;
  margin: 0.3rem 0;
}

.service-card p {
  color: #b8c7dd;
  line-height: 1.45;
  font-size: 0.86rem;
}

.eyebrow {
  color: #ffd700;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.35rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.intro {
  color: #b8c7dd;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
}

.primary-action {
  color: #0a1628;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.secondary-action {
  color: #eef4ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
.public-link:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 3px;
}

.public-link {
  color: #9fb3d1;
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.ownership-notice {
  color: #7f93b2;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
  width: min(100%, 760px);
  margin-top: 1.5rem;
}
.ownership-notice strong {
  color: #ffd700;
}

@media (max-width: 520px) {
  .welcome-shell {
    padding: 1rem;
  }

  .welcome-layout {
    grid-template-columns: 1fr;
    align-self: start;
    padding-top: 1rem;
  }

  .welcome-panel {
    padding: 1.35rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .actions {
    grid-template-columns: 1fr;
  }
}
