:root {
  --chores-night: #020817;
  --chores-night-soft: #06142d;
  --chores-panel: rgba(7, 20, 46, 0.78);
  --chores-panel-solid: #081733;
  --chores-line: rgba(126, 216, 255, 0.2);
  --chores-cyan: #52e6ff;
  --chores-cyan-bright: #a7f5ff;
  --chores-blue: #2a83ff;
  --chores-violet: #a46cff;
  --chores-gold: #ffd774;
  --chores-ink: #f4fbff;
  --chores-muted: #9fb6d4;
  --chores-max: 1240px;
  --chores-radius: 28px;
  --chores-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
}

.nova-chores-site-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--chores-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(40, 116, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 46%, rgba(158, 82, 255, 0.12), transparent 32rem),
    var(--chores-night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nova-chores-site-page *,
.nova-chores-site-page *::before,
.nova-chores-site-page *::after {
  box-sizing: border-box;
}

.nova-chores-site-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nova-chores-site-page a {
  color: inherit;
}

.nova-chores-site-page h1,
.nova-chores-site-page h2,
.nova-chores-site-page h3 {
  color: var(--chores-ink);
}

.nova-chores-site-page button,
.nova-chores-site-page a {
  -webkit-tap-highlight-color: transparent;
}

.nova-chores-site-page :focus-visible {
  outline: 3px solid var(--chores-cyan-bright);
  outline-offset: 3px;
}

.chores-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: -9999px;
  padding: 12px 16px;
  color: #03101d;
  background: var(--chores-cyan-bright);
  border-radius: 10px;
  transition: none;
}

.chores-skip-link:focus {
  left: 10px;
}

.chores-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--chores-max));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(136, 220, 255, 0.16);
  background: rgba(2, 8, 23, 0.82);
  backdrop-filter: blur(22px);
}

.chores-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--chores-ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.chores-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.chores-brand span {
  display: grid;
  gap: 2px;
}

.chores-brand small {
  color: var(--chores-cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chores-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.chores-nav a {
  color: #b8cce5;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 750;
  transition: color 160ms ease;
}

.chores-nav a:hover,
.chores-nav a:focus-visible {
  color: #fff;
}

.chores-nav .chores-nav-cta {
  padding: 10px 16px;
  color: #03101b;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--chores-cyan-bright), var(--chores-cyan));
  box-shadow: 0 10px 30px rgba(82, 230, 255, 0.18);
}

.chores-menu-button {
  display: none;
  min-width: 72px;
  padding: 10px 14px;
  color: var(--chores-ink);
  border: 1px solid var(--chores-line);
  border-radius: 999px;
  background: rgba(7, 20, 46, 0.84);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.chores-kicker {
  margin: 0 0 14px;
  color: var(--chores-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chores-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  min-height: min(900px, calc(100vh - 118px));
  overflow: hidden;
  border-bottom: 1px solid rgba(82, 230, 255, 0.14);
}

.chores-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.82) 42%, rgba(2, 8, 23, 0.22) 76%),
    linear-gradient(0deg, var(--chores-night) 0%, transparent 22%, transparent 78%, rgba(2, 8, 23, 0.58) 100%);
}

.chores-hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.14) contrast(1.08) brightness(0.82);
}

.chores-hero-copy {
  width: min(100%, 640px);
  margin-left: max(28px, calc((100vw - var(--chores-max)) / 2));
  padding: 86px 24px 86px 0;
}

.chores-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.35rem, 6.1vw, 7.25rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.chores-hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(98deg, #fff6c8 4%, var(--chores-gold) 48%, #ffb84a 97%);
  -webkit-background-clip: text;
  background-clip: text;
}

.chores-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 26px 0 14px;
  color: #dbe9fa;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chores-hero-pillars i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--chores-gold);
  box-shadow: 0 0 12px var(--chores-gold);
}

.chores-hero-lead {
  max-width: 520px;
  margin: 0;
  color: #b8cce5;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.chores-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chores-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.chores-button:hover,
.chores-button:focus-visible {
  transform: translateY(-2px);
}

.chores-button-primary {
  color: #061020;
  background: linear-gradient(135deg, var(--chores-cyan-bright), var(--chores-cyan) 48%, #43bbff);
  box-shadow: 0 15px 40px rgba(82, 230, 255, 0.2);
}

.chores-button-secondary {
  color: #eaf8ff;
  border-color: rgba(130, 224, 255, 0.33);
  background: rgba(7, 20, 46, 0.72);
  backdrop-filter: blur(14px);
}

.chores-facecard {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-top: 34px;
  padding: 12px 18px 12px 12px;
  overflow: hidden;
  color: var(--chores-ink);
  border: 1px solid rgba(126, 216, 255, 0.26);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(10, 28, 60, 0.9), rgba(21, 15, 52, 0.74));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.chores-facecard > img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(38, 171, 255, 0.26));
}

.chores-facecard > span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 12px;
}

.chores-facecard small,
.chores-facecard em {
  grid-column: 1 / -1;
}

.chores-facecard small {
  color: var(--chores-cyan);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chores-facecard strong {
  font-size: 1.05rem;
}

.chores-facecard em {
  margin-top: 3px;
  color: #9eb6d4;
  font-size: 0.73rem;
  font-style: normal;
  line-height: 1.45;
}

.chores-facecard b {
  grid-column: 2;
  grid-row: 2;
  color: var(--chores-gold);
  font-size: 0.63rem;
}

.chores-hero-product {
  position: relative;
  align-self: stretch;
  min-height: 760px;
}

.chores-phone {
  position: absolute;
  z-index: 2;
  width: min(252px, 30vw);
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(205, 240, 255, 0.5);
  border-radius: 34px;
  background: linear-gradient(150deg, #cedfff, #142548 12%, #020713 88%, #5f8fd3);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.56), 0 0 70px rgba(44, 170, 255, 0.17);
}

.chores-phone img {
  width: 100%;
  border-radius: 27px;
}

.chores-phone-primary {
  top: 84px;
  left: 15%;
  transform: rotate(-5deg);
}

.chores-phone-secondary {
  z-index: 1;
  top: 155px;
  left: 48%;
  transform: rotate(6deg) scale(0.91);
  opacity: 0.9;
}

.chores-hero-scout {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: 30px;
  width: min(390px, 44vw);
  filter: drop-shadow(0 36px 40px rgba(0, 0, 0, 0.52));
}

.chores-section-heading {
  width: min(100% - 40px, 900px);
  margin: 0 auto 56px;
  text-align: center;
}

.chores-section-heading h2,
.family-trust-card h2,
.theme-family-card h2,
.chores-closing h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.chores-section-heading > p:last-child {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--chores-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.chores-journey {
  position: relative;
  padding: 116px 0 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(71, 199, 255, 0.13), transparent 32rem),
    linear-gradient(180deg, #020817, #061028 58%, #020817);
}

.journey-tabs {
  display: none;
  width: min(100% - 40px, 520px);
  margin: 0 auto 26px;
  padding: 5px;
  border: 1px solid var(--chores-line);
  border-radius: 999px;
  background: rgba(5, 17, 40, 0.9);
}

.journey-tabs button {
  flex: 1;
  padding: 10px;
  color: var(--chores-muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
}

.journey-tabs button[aria-selected="true"] {
  color: #061120;
  background: var(--chores-cyan);
}

.journey-grid {
  position: relative;
  display: grid;
  gap: 34px;
  width: min(100% - 40px, var(--chores-max));
  margin: 0 auto;
}

.journey-rail {
  position: absolute;
  top: 120px;
  bottom: 120px;
  left: 84px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2px;
  background: linear-gradient(var(--chores-cyan), var(--chores-violet), var(--chores-gold));
  box-shadow: 0 0 26px rgba(82, 230, 255, 0.4);
}

.journey-rail span {
  width: 12px;
  height: 12px;
  margin-left: -5px;
  border: 2px solid var(--chores-night);
  border-radius: 50%;
  background: var(--chores-cyan-bright);
  box-shadow: 0 0 22px var(--chores-cyan);
}

.journey-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px 250px minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  min-height: 500px;
  padding: 34px 50px 34px 24px;
  border: 1px solid rgba(126, 216, 255, 0.18);
  border-radius: var(--chores-radius);
  background:
    linear-gradient(110deg, rgba(5, 17, 40, 0.88), rgba(8, 24, 53, 0.64)),
    rgba(5, 17, 40, 0.72);
  box-shadow: var(--chores-shadow);
  backdrop-filter: blur(20px);
}

.journey-card:nth-of-type(3) {
  border-color: rgba(174, 112, 255, 0.25);
}

.journey-card:nth-of-type(4) {
  border-color: rgba(255, 215, 116, 0.22);
}

.journey-identity {
  align-self: start;
  text-align: center;
}

.journey-identity img {
  width: 154px;
  height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.36));
}

.journey-identity p {
  display: grid;
  gap: 3px;
  margin: 6px 0 0;
}

.journey-identity small {
  color: var(--chores-cyan);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.journey-identity strong {
  font-size: 1.22rem;
}

.journey-identity span {
  color: var(--chores-muted);
  font-size: 0.75rem;
}

.journey-screen {
  width: 100%;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(191, 235, 255, 0.34);
  border-radius: 30px;
  background: #020713;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.48);
  transform: rotate(-2deg);
}

.journey-card:nth-of-type(even) .journey-screen {
  transform: rotate(2deg);
}

.journey-screen img {
  width: 100%;
  border-radius: 23px;
}

.journey-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.journey-copy > p:not(.chores-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--chores-muted);
  line-height: 1.7;
}

.journey-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journey-copy li {
  position: relative;
  padding-left: 22px;
  color: #d5e4f7;
  font-size: 0.86rem;
  line-height: 1.5;
}

.journey-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chores-cyan);
  box-shadow: 0 0 10px rgba(82, 230, 255, 0.55);
}

.family-system {
  padding: 110px 0 120px;
  background: var(--chores-night);
}

.compact-heading {
  margin-bottom: 48px;
}

.family-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  width: min(100% - 40px, var(--chores-max));
  margin: 0 auto;
}

.family-feature-grid article {
  grid-column: span 3;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(126, 216, 255, 0.17);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(10, 29, 62, 0.87), rgba(5, 13, 31, 0.94));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.family-feature-grid article:nth-child(2) {
  border-color: rgba(255, 215, 116, 0.24);
}

.family-feature-grid article:nth-child(3) {
  border-color: rgba(164, 108, 255, 0.26);
}

.family-feature-grid .parent-feature-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 190px 0.75fr 1.25fr;
  align-items: center;
  gap: 26px;
  min-height: 220px;
  background:
    radial-gradient(circle at 12% 50%, rgba(82, 230, 255, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(13, 38, 78, 0.92), rgba(25, 17, 60, 0.86));
}

.family-feature-grid img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  margin: -8px 0 14px;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.35));
}

.family-feature-grid .parent-feature-card img {
  width: 178px;
  height: 178px;
  margin: 0;
}

.family-feature-grid h3 {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.family-feature-grid p {
  margin: 12px 0 0;
  color: var(--chores-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.trust-and-themes {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  width: min(100% - 40px, var(--chores-max));
  margin: 0 auto;
  padding: 0 0 120px;
}

.family-trust-card,
.theme-family-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(126, 216, 255, 0.18);
  border-radius: var(--chores-radius);
  background: linear-gradient(140deg, rgba(8, 26, 57, 0.92), rgba(5, 13, 31, 0.96));
  box-shadow: var(--chores-shadow);
}

.family-trust-card h2,
.theme-family-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.family-trust-card > p:last-child {
  margin: 24px 0 0;
  color: var(--chores-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.trust-grid > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px;
  border: 1px solid rgba(126, 216, 255, 0.12);
  border-radius: 16px;
  background: rgba(4, 14, 34, 0.72);
}

.trust-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.trust-grid strong {
  font-size: 0.77rem;
  line-height: 1.35;
}

.theme-family-card {
  border-color: rgba(164, 108, 255, 0.22);
  background:
    radial-gradient(circle at 86% 12%, rgba(164, 108, 255, 0.18), transparent 20rem),
    linear-gradient(140deg, rgba(8, 26, 57, 0.92), rgba(12, 8, 35, 0.96));
}

.theme-family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.theme-family-grid button {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 12px 8px;
  color: #dceaff;
  border: 1px solid rgba(126, 216, 255, 0.12);
  border-radius: 18px;
  background: rgba(4, 14, 34, 0.78);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.theme-family-grid button:hover,
.theme-family-grid button:focus-visible,
.theme-family-grid button.is-selected {
  transform: translateY(-2px);
  border-color: rgba(82, 230, 255, 0.52);
  background: rgba(15, 42, 83, 0.9);
}

.theme-family-grid button.is-selected {
  box-shadow: 0 0 0 1px rgba(82, 230, 255, 0.12), 0 15px 36px rgba(11, 104, 170, 0.18);
}

.theme-family-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.33));
}

.theme-family-detail {
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 2px solid var(--chores-cyan);
  border-radius: 0 14px 14px 0;
  background: rgba(3, 12, 29, 0.58);
}

.theme-family-detail strong {
  color: var(--chores-gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-family-detail p {
  margin: 7px 0 0;
  color: var(--chores-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.chores-build-status {
  padding: 110px 0 90px;
  border-top: 1px solid rgba(126, 216, 255, 0.1);
  background:
    radial-gradient(circle at 50% 34%, rgba(67, 151, 255, 0.12), transparent 32rem),
    #030b1c;
}

.build-status-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(126, 216, 255, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 50%, rgba(82, 230, 255, 0.17), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(164, 108, 255, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(10, 30, 65, 0.94), rgba(4, 13, 31, 0.99));
  box-shadow: var(--chores-shadow);
}

.build-status-card > img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.42));
}

.build-status-card h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.build-status-card div > p:not(.chores-kicker) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--chores-muted);
  line-height: 1.65;
}

.build-status-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.build-status-points li {
  padding: 8px 12px;
  border: 1px solid rgba(126, 216, 255, 0.18);
  border-radius: 999px;
  color: #dcecff;
  background: rgba(7, 24, 52, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
}

.build-status-badge {
  align-self: start;
  padding: 10px 15px;
  border: 1px solid rgba(255, 215, 116, 0.38);
  border-radius: 999px;
  color: var(--chores-gold);
  background: rgba(35, 25, 8, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chores-closing {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(100% - 40px, var(--chores-max));
  margin: 96px auto;
  padding: 42px 48px;
  overflow: hidden;
  border: 1px solid rgba(126, 216, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 50%, rgba(82, 230, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 84% 30%, rgba(164, 108, 255, 0.15), transparent 18rem),
    linear-gradient(125deg, #071b3b, #100a2e);
  box-shadow: var(--chores-shadow);
}

.chores-closing > img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: -20px 0;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.chores-closing h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.chores-closing div > p:last-child {
  margin: 14px 0 0;
  color: var(--chores-muted);
}

.chores-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, var(--chores-max));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(126, 216, 255, 0.14);
}

.chores-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.chores-footer nav a {
  color: var(--chores-muted);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 750;
}

.chores-footer > small {
  grid-column: 1 / -1;
  color: #6f89aa;
  font-size: 0.68rem;
}

/* Nova Chores parent-page integration. */
.nova-chores-parent .orbit-chores {
  --node-rgb: 82, 230, 255;
  --node-delay: -4.7s;
}

.nova-chores-parent .orbit-track-chores {
  --orbit-phase: 180deg;
  --orbit-phase-inverse: -180deg;
}

.nova-chores-parent .pillar-chores {
  --pillar-rgb: 82, 230, 255;
}

.nova-chores-parent .pillar-chores .pillar-scene-media > img:first-child {
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
}

.nova-chores-parent .pillar-chores .pillar-scene-mark,
.nova-chores-parent .orbit-chores img {
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(82, 230, 255, 0.44));
}

@media (max-width: 1120px) {
  .chores-header {
    width: min(100% - 28px, var(--chores-max));
  }

  .chores-nav {
    gap: 15px;
  }

  .chores-nav a {
    font-size: 0.7rem;
  }

  .chores-hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  }

  .chores-hero-copy {
    margin-left: 34px;
  }

  .journey-card {
    grid-template-columns: 150px 225px minmax(0, 1fr);
    gap: 34px;
    padding-right: 34px;
  }

  .journey-rail {
    left: 74px;
  }

  .family-feature-grid article {
    grid-column: span 6;
  }

  .family-feature-grid article:nth-child(3),
  .family-feature-grid article:nth-child(4) {
    grid-column: span 6;
  }

  .family-feature-grid .parent-feature-card {
    grid-column: span 12;
  }

  .trust-and-themes {
    grid-template-columns: 1fr;
  }

  .chores-closing {
    grid-template-columns: 150px 1fr;
  }

  .chores-closing > img {
    width: 150px;
    height: 150px;
  }

  .chores-closing .chores-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .chores-header {
    min-height: 68px;
  }

  .chores-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .chores-nav {
    position: absolute;
    top: 61px;
    right: 0;
    display: none;
    width: min(300px, calc(100vw - 28px));
    padding: 16px;
    border: 1px solid rgba(126, 216, 255, 0.24);
    border-radius: 20px;
    background: rgba(3, 12, 29, 0.98);
    box-shadow: var(--chores-shadow);
  }

  .chores-nav.is-open {
    display: grid;
  }

  .chores-nav a {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .chores-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .chores-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.68), rgba(2, 8, 23, 0.92) 48%, var(--chores-night)),
      linear-gradient(90deg, rgba(2, 8, 23, 0.72), transparent 70%);
  }

  .chores-hero-backdrop {
    height: 760px;
    object-position: 60% center;
  }

  .chores-hero-copy {
    width: min(100% - 40px, 680px);
    margin: 0 auto;
    padding: 82px 0 24px;
  }

  .chores-hero-product {
    min-height: 610px;
  }

  .chores-phone {
    width: min(235px, 38vw);
  }

  .chores-phone-primary {
    top: 30px;
    left: 16%;
  }

  .chores-phone-secondary {
    top: 80px;
    left: 46%;
  }

  .chores-hero-scout {
    right: 3%;
    bottom: 12px;
    width: min(330px, 50vw);
  }

  .journey-tabs {
    display: none;
  }

  .journey-rail {
    display: none;
  }

  .journey-card {
    display: grid;
    grid-template-columns: 130px 210px 1fr;
    gap: 24px;
    min-height: 450px;
    padding: 24px;
  }

  .journey-card.is-active {
    display: grid;
  }

  .journey-identity img {
    width: 120px;
    height: 120px;
  }

  .family-feature-grid .parent-feature-card {
    grid-template-columns: 150px 1fr;
  }

  .family-feature-grid .parent-feature-card p {
    grid-column: 2;
  }

  .build-status-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .build-status-card > img {
    width: 150px;
    height: 150px;
  }

  .build-status-badge {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .chores-header {
    width: calc(100% - 28px);
  }

  .chores-brand img {
    width: 38px;
    height: 38px;
  }

  .chores-hero-copy {
    width: calc(100% - 32px);
    padding-top: 64px;
  }

  .chores-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .chores-actions {
    display: grid;
  }

  .chores-button {
    width: 100%;
  }

  .chores-facecard {
    grid-template-columns: 72px 1fr;
    padding-right: 13px;
  }

  .chores-facecard > img {
    width: 72px;
    height: 72px;
  }

  .chores-facecard b {
    display: none;
  }

  .chores-hero-product {
    min-height: 510px;
  }

  .chores-phone {
    width: 47vw;
    padding: 5px;
    border-radius: 25px;
  }

  .chores-phone img {
    border-radius: 20px;
  }

  .chores-phone-primary {
    left: 7%;
  }

  .chores-phone-secondary {
    top: 60px;
    left: 47%;
  }

  .chores-hero-scout {
    right: -5%;
    bottom: 0;
    width: 58vw;
  }

  .chores-journey,
  .family-system,
  .chores-build-status {
    padding-top: 80px;
    padding-bottom: 74px;
  }

  .build-status-card {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 32px);
    text-align: left;
  }

  .build-status-card > img {
    width: 118px;
    height: 118px;
  }

  .build-status-badge {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .chores-section-heading {
    width: calc(100% - 32px);
    margin-bottom: 38px;
  }

  .chores-section-heading h2 {
    font-size: 2.35rem;
  }

  .journey-tabs,
  .journey-grid,
  .family-feature-grid,
  .trust-and-themes,
  .chores-closing,
  .chores-footer {
    width: calc(100% - 28px);
  }

  .journey-tabs {
    display: flex;
  }

  .journey-card {
    display: none;
  }

  .journey-card.is-active {
    display: grid;
  }

  .journey-card,
  .journey-card.is-active {
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .journey-identity img {
    width: 92px;
    height: 92px;
  }

  .journey-screen {
    width: min(100%, 230px);
    justify-self: center;
    border-radius: 25px;
  }

  .journey-copy {
    grid-column: 1 / -1;
    padding: 8px 4px 12px;
  }

  .family-feature-grid {
    grid-template-columns: 1fr;
  }

  .family-feature-grid article,
  .family-feature-grid article:nth-child(3),
  .family-feature-grid article:nth-child(4),
  .family-feature-grid .parent-feature-card {
    grid-column: 1;
  }

  .family-feature-grid article {
    min-height: 0;
  }

  .family-feature-grid .parent-feature-card {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }

  .family-feature-grid .parent-feature-card img {
    width: 110px;
    height: 110px;
  }

  .family-feature-grid .parent-feature-card p {
    grid-column: 1 / -1;
  }

  .trust-and-themes {
    padding-bottom: 78px;
  }

  .family-trust-card,
  .theme-family-card {
    padding: 26px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .theme-family-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-family-grid img {
    width: 74px;
    height: 74px;
  }

  .chores-closing {
    grid-template-columns: 95px 1fr;
    gap: 18px;
    margin: 70px auto;
    padding: 26px 20px;
  }

  .chores-closing > img {
    width: 95px;
    height: 95px;
  }

  .chores-closing h2 {
    font-size: 2.15rem;
  }

  .chores-closing .chores-button {
    grid-column: 1 / -1;
  }

  .chores-footer {
    grid-template-columns: 1fr;
  }

  .chores-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nova-chores-site-page *,
  .nova-chores-site-page *::before,
  .nova-chores-site-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
