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

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  background: #faf8f5;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #faf8f5);
  pointer-events: none;
  z-index: 50;
}

/* ── Nav ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #faf8f5;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-login {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 22px;
  border: 1.5px solid #d4cfc9;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.nav-login:hover {
  border-color: #1a1a1a;
  background: #f0ece7;
}

/* ── Hero ── */

main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 130px 24px 60px;
}

.hero {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: clamp(1.53rem, 3.85vw, 2.275rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #111;
  margin-bottom: 10px;
}

.tagline {
  font-size: clamp(1.75rem, 4.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #e05a00;
  margin-bottom: 14px;
}

.sub-tagline {
  font-size: clamp(0.82rem, 2vw, 1.05rem);
  font-weight: 500;
  color: #8c8c8c;
  margin-bottom: 44px;
}

/* ── CTAs ── */

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-primary {
  background: #e05a00;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.cta-primary:hover {
  background: #c44d00;
  transform: translateY(-1px);
}

.cta-resident {
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  padding: 10px 22px;
  border: 1.5px solid #d4cfc9;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.cta-resident:hover {
  border-color: #999;
  background: #f5f1ec;
}

.trust-signals {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 0.75rem;
  color: #8c8c8c;
  font-weight: 400;
}

.trust-signals span {
  text-align: center;
  min-width: 0;
}

/* ── Experience box ── */

.experience-box {
  margin-top: 58px;
  background: #fff8e8;
  border-radius: 14px;
  padding: 24px 28px;
  text-align: left;
}

.experience-q {
  font-size: 0.97rem;
  font-weight: 700;
  color: #7c4a00;
  margin-bottom: 10px;
}

.experience-a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #7c4a00;
  line-height: 1.75;
}

/* ── Insight box ── */

.insight-box {
  margin-top: 58px;
  background: #e6f4f1;
  border-radius: 14px;
  padding: 24px 28px;
  text-align: left;
}

.insight-q {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a6b61;
  margin-bottom: 10px;
}

.insight-a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a6b61;
  line-height: 1.75;
}

/* ── Footer ── */

footer {
  text-align: center;
  padding: 24px;
  font-size: 0.78rem;
  color: #c0bab4;
}

/* ── Mobile ── */

@media (max-width: 600px) {
  nav {
    padding: 0 20px;
    height: 60px;
  }

  .logo {
    height: 36px;
  }

  .nav-login {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  main {
    padding: 110px 20px 48px;
  }

  .sub-tagline {
    margin-bottom: 32px;
  }

  .trust-signals {
    font-size: 0.65rem;
    gap: 4px;
  }

  .cta-group {
    align-items: stretch;
  }

  .cta-primary,
  .cta-resident {
    text-align: center;
    padding: 15px 24px;
  }
}
