@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter+Tight:wght@700;800&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: #1d1e20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #274b6d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.bg-sky { background-image: url('../assets/sky-bg.jpg'); }
body.bg-office { background-image: url('../assets/office-bg.jpg'); }

.hero {
  width: 100%;
  max-width: 480px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 70%;
  margin: 0 auto 1.75rem;
  display: block;
}

.tagline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #ffaed4;
  margin: 0 0 0.5rem;
}

.subhead {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 1.75rem;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pill-btn {
  display: block;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.1s ease;
}
.pill-btn:hover { transform: translateY(-1px); }

.pill-btn-terracotta {
  background: #C1623D;
  color: #fff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.8rem;
}
.legal-links a {
  color: #4B4E91;
  text-decoration: underline;
}

/* Content pages (legal, virtual office) */
.page-card {
  width: 100%;
  max-width: 760px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.page-card h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.9rem;
  margin-top: 0;
}

.page-card .updated {
  color: #666;
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.page-card h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.page-card h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
}

.page-card p, .page-card li { line-height: 1.6; }

.page-card a { color: #274b6d; }

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #274b6d;
}

@media (max-width: 600px) {
  .page-card { margin: 1.5rem 1rem; padding: 1.5rem; }
}
