:root {
  --ink: #17211c;
  --muted: #667068;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --sage: #d9e4d5;
  --green: #1f4b39;
  --green-bright: #b9d7a4;
  --line: rgba(23, 33, 28, 0.14);
  --radius: 30px;
  --shadow: 0 24px 70px rgba(33, 47, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 0 4.5vw;
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 720;
  text-decoration: none;
}

.brand img {
  width: 33px;
  height: 33px;
}

.brand-divider {
  width: 1px;
  height: 24px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.45);
}

.care-wordmark {
  font-size: 1.05rem;
  font-weight: 560;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.8;
  transition: opacity 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--ink);
  background: white;
  border-radius: 999px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 790px;
  background: var(--green);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px 6vw 80px;
  color: white;
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 22px;
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.4rem, 5.4vw, 6.8rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  margin-top: 0.18em;
  color: var(--green-bright);
}

.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.27rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 720;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--green-bright);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button-primary:hover {
  background: white;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.development-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.79rem;
}

.hero-visual {
  position: relative;
  min-height: 790px;
  margin: 0;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(31, 75, 57, 0.3), transparent 28%),
    linear-gradient(0deg, rgba(17, 28, 22, 0.4), transparent 35%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-visual figcaption {
  position: absolute;
  right: 5vw;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.7rem);
  font-style: italic;
  line-height: 1.05;
  text-align: right;
}

.promise {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  gap: 60px;
  padding: 120px 6vw;
  background: var(--cream);
}

.promise h2,
.section-heading h2,
.day-intro h2,
.trust h2,
.testing h2,
.pilot h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.1vw, 6rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.promise-copy {
  align-self: end;
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.section-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 5vw;
  padding-left: 5vw;
}

.support {
  padding-top: 130px;
  padding-bottom: 125px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.feature-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f7f2;
}

.feature-card-accent {
  background: var(--sage);
}

.feature-number {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-top: 74px;
  color: var(--green);
  border: 1px solid rgba(31, 75, 57, 0.28);
  border-radius: 50%;
  place-items: center;
  font-size: 1.8rem;
}

.feature-card h3 {
  margin: 25px 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-status {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.day-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #e7ded0;
}

.day-intro {
  min-height: 720px;
  padding: 110px 6vw;
  color: white;
  background:
    linear-gradient(0deg, rgba(19, 30, 24, 0.45), rgba(19, 30, 24, 0.08)),
    url("/assets/elder-care.png") 55% center / cover no-repeat;
}

.day-timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 55px 6vw;
  list-style: none;
}

.day-timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.16);
}

.day-timeline li:last-child {
  border-bottom: 0;
}

.time {
  font-size: 1.14rem;
  font-weight: 760;
}

.time span {
  color: var(--muted);
  font-size: 0.68rem;
}

.day-timeline h3 {
  margin: 0 0 7px;
  font-size: 1.38rem;
}

.day-timeline p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.people {
  padding-top: 135px;
  padding-bottom: 135px;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.people-card {
  min-height: 510px;
  padding: 48px;
  border-radius: var(--radius);
}

.older-adults {
  background: var(--cream);
}

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

.people-card h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.3vw, 4rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.people-card ul {
  display: grid;
  gap: 0;
  margin: 85px 0 0;
  padding: 0;
  list-style: none;
}

.people-card li {
  padding: 15px 0;
  border-top: 1px solid currentColor;
  font-size: 1rem;
  opacity: 0.72;
}

.family-moment {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.family-moment > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.family-moment::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 24, 19, 0.76), rgba(15, 24, 19, 0.03) 70%);
}

.family-overlay {
  position: absolute;
  top: 50%;
  left: 7vw;
  z-index: 2;
  max-width: 650px;
  color: white;
  transform: translateY(-50%);
}

.family-overlay blockquote {
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.family-overlay > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  padding: 130px 7vw;
  color: white;
  background: #172c23;
}

.trust .section-label {
  color: var(--green-bright);
}

.trust-lead {
  max-width: 650px;
  margin: 8px 0 45px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.32rem;
  line-height: 1.5;
}

.trust-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-list article > span {
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 760;
}

.trust-list h3 {
  margin: 0 0 7px;
  font-size: 1.18rem;
}

.trust-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.care-disclaimer {
  margin: 36px 0 0;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.testing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 135px;
}

.testing figure {
  margin: 0;
}

.testing figure img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: var(--radius);
}

.testing figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
}

.testing-copy p:not(.section-label) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.testing-copy h2 {
  margin-bottom: 30px;
}

.text-link.dark {
  margin-top: 18px;
  color: var(--green);
}

.pilot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 120px 7vw;
  background: var(--green-bright);
}

.pilot h2 {
  max-width: 760px;
}

.pilot > div > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(23, 33, 28, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pilot-form {
  align-self: center;
}

.pilot-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  flex: 1;
  height: 60px;
  padding: 0 20px;
  color: var(--ink);
  border: 1px solid rgba(23, 33, 28, 0.3);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.7);
}

.form-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 75, 57, 0.15);
}

.form-row button {
  min-height: 60px;
  padding: 0 24px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
  font-weight: 720;
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.form-status.is-error {
  color: #842323;
}

.form-fine-print {
  max-width: 600px;
  margin: 5px 0 0;
  color: rgba(23, 33, 28, 0.55);
  font-size: 0.73rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  padding: 62px 6vw 30px;
  color: white;
  background: #111914;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p,
.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 45px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1050px) {
  .site-nav {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 13px 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: white;
  }

  .mobile-nav {
    position: absolute;
    top: 70px;
    right: 4vw;
    display: none;
    flex-direction: column;
    min-width: 220px;
    padding: 12px;
    color: var(--ink);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px;
    text-decoration: none;
    font-weight: 650;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .promise {
    grid-template-columns: 1fr 2fr;
  }

  .promise-copy {
    grid-column: 2;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .day-section,
  .trust,
  .testing,
  .pilot {
    grid-template-columns: 1fr;
  }

  .day-intro {
    min-height: 620px;
  }

  .trust {
    gap: 60px;
  }

  .testing {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand span,
  .brand-divider {
    display: none;
  }

  .care-wordmark {
    margin-left: 11px;
  }

  .hero-copy {
    min-height: 650px;
    padding: 120px 24px 65px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 500px;
  }

  .promise {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 85px 24px;
  }

  .promise-copy {
    grid-column: auto;
  }

  .section-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .support,
  .people,
  .testing {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

  .promise h2,
  .section-heading h2,
  .day-intro h2,
  .trust h2,
  .testing h2,
  .pilot h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .feature-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 360px;
  }

  .feature-icon {
    margin-top: 48px;
  }

  .day-intro {
    min-height: 520px;
    padding: 80px 24px;
  }

  .day-timeline {
    padding: 45px 24px;
  }

  .day-timeline li {
    grid-template-columns: 86px 1fr;
    gap: 15px;
  }

  .people-card {
    min-height: auto;
    padding: 34px 26px;
  }

  .people-card ul {
    margin-top: 55px;
  }

  .family-moment,
  .family-moment > img {
    min-height: 620px;
    height: 620px;
  }

  .family-moment > img {
    object-position: 57% center;
  }

  .family-moment::after {
    background: linear-gradient(0deg, rgba(15, 24, 19, 0.85), rgba(15, 24, 19, 0.06) 75%);
  }

  .family-overlay {
    top: auto;
    right: 24px;
    bottom: 45px;
    left: 24px;
    transform: none;
  }

  .trust,
  .pilot {
    padding: 90px 24px;
  }

  .testing figure img {
    aspect-ratio: 1 / 1;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 24px 25px;
  }

  .site-footer .brand span {
    display: inline;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
