* {
  box-sizing: border-box;
}

:root {
  --shore-cream: #f4efe7;
  --shore-card: #fffaf2;
  --shore-ink: #14201f;
  --shore-muted: #45514f;
  --shore-green: #123f3a;
  --shore-teal: #35766d;
  --shore-blue: #86bdd0;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--shore-cream);
  color: var(--shore-ink);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("/topographic-background.png");
  background-size: 980px auto;
  background-position: top right;
  background-repeat: repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(244, 239, 231, 0.72), rgba(244, 239, 231, 0.38) 48%, rgba(244, 239, 231, 0.62));
}

a {
  color: inherit;
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 231, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.035em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(20, 32, 31, 0.16);
}

.nav nav {
  display: flex;
  gap: 18px;
}

.nav nav a {
  text-decoration: none;
  color: var(--shore-muted);
  font-weight: 650;
}

.hero {
  padding: 96px clamp(20px, 5vw, 72px) 72px;
  max-width: 1120px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--shore-teal);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 0;
  max-width: 1000px;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--shore-muted);
  max-width: 720px;
  margin: 28px 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: var(--shore-green);
  color: white;
}

.secondary {
  background: white;
  border: 1px solid rgba(20, 32, 31, 0.12);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  background: rgba(20, 32, 31, 0.12);
  border: 1px solid rgba(20, 32, 31, 0.12);
  border-radius: 28px;
  overflow: hidden;
}

.proof div {
  background: var(--shore-card);
  padding: 28px;
}

.proof strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.proof span {
  color: #5b6664;
  line-height: 1.45;
}

.split,
.cards,
.cta {
  padding: 80px clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split h2,
.cards h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}

.split p:last-child,
.cta p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--shore-muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: var(--shore-card);
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(20, 32, 31, 0.08);
}

.card h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--shore-green);
}

.card p:last-child {
  color: #5b6664;
  line-height: 1.5;
}

.cta {
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  background: var(--shore-green);
  color: white;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}


.cta > * {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  color: #8ed2c7;
}

.cta p {
  color: #d9ebe7;
  max-width: 720px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 56px;
  }

  .proof,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .cta {
    margin-left: 20px;
    margin-right: 20px;
  }
}
