/* ===========================
   Base
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0d1f3c;
  color: #e8edf4;
  font-family: Georgia, 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #7a9bbf;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===========================
   Coming Soon (index.html)
=========================== */
body.centered {
  justify-content: center;
}

.container {
  flex: 1;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: #7a9bbf;
  margin: 0 auto 1.25rem;
}

.container p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #7a9bbf;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.docs-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #3a5a7a;
  letter-spacing: 0.1em;
}

.docs-link:hover {
  color: #7a9bbf;
  text-decoration: none;
}

/* ===========================
   Intro page (intro.html)
=========================== */
.intro {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.intro header {
  margin-bottom: 3rem;
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: 2rem;
}

.intro header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.intro header .subtitle {
  color: #7a9bbf;
  font-style: italic;
  font-size: 1.05rem;
}

.intro section {
  margin-bottom: 2.5rem;
}

.intro h2 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a9bbf;
  margin-bottom: 1rem;
}

.intro p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro ul {
  list-style: square;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.intro ul li::before {
  color: #7a9bbf;
}

.intro ul li {
  line-height: 1.75;
}

.intro .service {
  margin-bottom: 1.25rem;
}

.intro .service strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #c8d8ea;
}

.intro footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1e3a5f;
  color: #7a9bbf;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===========================
   Site-wide fixed footer
=========================== */
.site-footer {
  text-align: center;
  padding: 0.65rem 1rem;
  color: #7a9bbf;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.15em;
  background-color: #0d1f3c;
}
