:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  background: #10130f;
  color: #f7f3e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100svh;
  background: #10130f;
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 76px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 19, 15, 0.9) 0%, rgba(16, 19, 15, 0.48) 46%, rgba(16, 19, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 19, 15, 0.74) 0%, rgba(16, 19, 15, 0.1) 58%);
}

.hero-copy {
  width: min(760px, 100%);
  padding-bottom: clamp(16px, 4vh, 44px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #f8cf77;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(3.25rem, 10vw, 8.5rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

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

.actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 6px;
  padding: 11px 16px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.actions a:first-child {
  background: #f8cf77;
  color: #18130a;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, 0.24);
}

.status-strip p {
  min-height: 80px;
  margin: 0;
  padding: 24px clamp(18px, 3vw, 36px);
  background: #10130f;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  font-weight: 750;
}

.rooted-signals {
  --hero-image: url("/assets/rootedsignals-hero.png");
}

.live-rooted {
  --hero-image: url("/assets/liverootedlife-hero.png");
}

.live-rooted .eyebrow {
  color: #ffd36b;
}

.live-rooted .actions a:first-child {
  background: #f58a7d;
  color: #1e100e;
}

@media (max-width: 720px) {
  .hero {
    min-height: 84svh;
    padding: 28px 22px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(16, 19, 15, 0.9) 0%, rgba(16, 19, 15, 0.44) 100%),
      linear-gradient(0deg, rgba(16, 19, 15, 0.78) 0%, rgba(16, 19, 15, 0.16) 62%);
  }

  .actions {
    width: 100%;
  }

  .actions a {
    flex: 1 1 180px;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-strip p {
    min-height: 58px;
    padding: 18px 22px;
  }
}
