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

/* ── Base ── */
html, body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

a {
  color: #000;
  text-decoration: underline;
}

/* ── Landing Page ── */
.landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px 18vh;
}

.landing__logo {
  width: 440px;
  max-width: 80vw;
  margin-bottom: 4vh;
}

.landing__tagline {
  max-width: 540px;
  font-size: 1.1rem;
}

.landing__pillars {
  display: flex;
  justify-content: center;
  margin-bottom: 2vh;
}

.landing__pillars a {
  width: 120px;
  text-align: center;
}

.landing__vision {
  margin-bottom: 3vh;
}

/* ── Email Capture ── */
.email-capture {
  position: absolute;
  bottom: 8vh;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.email-capture__form {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  height: 38px;
  width: 280px;
}

.email-capture__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 12px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.85rem;
  background: transparent;
  color: #000;
}

.email-capture__input::placeholder {
  color: #999;
}

.email-capture__button {
  border: none;
  border-left: 1px solid #000;
  background: transparent;
  padding: 0 16px;
  height: 100%;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ── Detail Page ── */
.detail {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.detail__title {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 3vh;
}

.detail__body {
  max-width: 540px;
  margin-bottom: 4vh;
}

.detail__home {
  font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }

  .landing__logo {
    width: 70vw;
  }

  .email-capture__form {
    width: 240px;
  }
}
