@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:400,600,700|Rubik:400,500,700&display=swap");

:root {
  color-scheme: light;
  --jupiter-left: #5040f4;
  --jupiter-right: #31b4fe;
  --jupiter-deep: #163989;
  --ink: #0f1d46;
  --text: rgba(15, 29, 70, 0.72);
  --muted: rgba(15, 29, 70, 0.58);
  --paper: #ffffff;
  --soft: #f7faff;
  --line: #e7edf7;
  --yellow: #ffca45;
  --green: #17a982;
  --coral: #ff6b60;
  --purple: #7a4ee7;
  --shadow: 0 28px 80px rgba(15, 29, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

h1,
h2,
h3,
.button {
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  position: absolute;
  z-index: 40;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: 100%;
  padding: 28px max(28px, calc((100vw - 1000px) / 2));
  color: #fff;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: #fff;
  font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 29, 70, 0.12);
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #fff;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 144px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #fff;
  background: rgba(15, 29, 70, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15, 29, 70, 0.16);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: block;
  overflow: hidden;
  padding: 104px max(28px, calc((100vw - 1000px) / 2)) 48px;
  color: white;
  background-image: linear-gradient(to right, var(--jupiter-left) 0%, var(--jupiter-right) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(to right top, #fff 50%, transparent 50%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

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

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.section .eyebrow,
.showcase .eyebrow,
.review-board .eyebrow,
.package-band .eyebrow,
.final-cta .eyebrow {
  color: var(--purple);
}

h1 {
  max-width: 830px;
  margin: 18px auto 0;
  color: #fff;
  font-size: 3.82rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.hero-path-choice {
  max-width: 1000px;
  margin: 32px auto 0;
}

.hero-path-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hero-path-card {
  position: relative;
  min-height: 258px;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 28px 170px 28px 28px;
  text-align: left;
  color: #fff;
  background: rgba(15, 29, 70, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 29, 70, 0.14);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.hero-path-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -140px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-path-card::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -20px;
  width: 102px;
  height: 222px;
  background: center top / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  box-shadow:
    0 18px 42px rgba(15, 29, 70, 0.28),
    0 0 0 6px rgba(15, 29, 70, 0.24);
  pointer-events: none;
}

.hero-path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(15, 29, 70, 0.28);
}

.hero-path-card span,
.hero-path-card strong,
.hero-path-card small,
.hero-path-card em {
  position: relative;
  z-index: 1;
}

.hero-path-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-path-card strong {
  color: #fff;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.02rem;
  line-height: 1.1;
}

.hero-path-card small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero-path-card em {
  width: fit-content;
  margin-top: 8px;
  padding: 11px 15px 9px;
  color: var(--ink);
  background: #fff;
  border-radius: 5px;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.hero-path-owner {
  background: linear-gradient(135deg, rgba(15, 29, 70, 0.76), rgba(80, 64, 244, 0.62));
}

.hero-path-owner::after {
  background-image: url("/info/assets/screenshots/mobile-roster.png");
}

.hero-path-family {
  background: linear-gradient(135deg, rgba(23, 169, 130, 0.64), rgba(49, 180, 254, 0.42));
}

.hero-path-family::after {
  background-image: url("/info/assets/screenshots/mobile-calendar.png");
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px 13px;
  color: #fff;
  background: var(--jupiter-deep);
  border: 0;
  border-radius: 5px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(15, 29, 70, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 29, 70, 0.22);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-ghost,
.button-clear {
  color: #fff;
  background: rgba(15, 29, 70, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-actions .button-clear {
  display: none;
}

.button-dark {
  background: var(--jupiter-deep);
}

.hero-product {
  min-height: 430px;
  background:
    url("/info/assets/images/jupiter-circle-bg-2.png") center center / min(100%, 430px) auto no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 60%);
}

.phone-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #0f1d46;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 26px;
  box-shadow:
    0 24px 70px rgba(15, 29, 70, 0.3),
    0 0 0 8px rgba(15, 29, 70, 0.28);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-shot-main {
  top: 0;
  right: 110px;
  width: 216px;
  height: 470px;
  transform: none;
}

.phone-shot-side {
  display: none;
}

.signal-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1000px, calc(100% - 56px));
  margin: -42px auto 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.signal-strip article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip article:last-child {
  border-right: 0;
}

.signal-strip strong {
  color: var(--jupiter-left);
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
}

.signal-strip span {
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}

.pathways {
  position: relative;
  overflow: hidden;
  padding: 120px max(28px, calc((100vw - 1000px) / 2)) 108px;
  background:
    url("/info/assets/images/jupiter-circle-bg.png") left calc(50vw - 680px) top 80px / 420px auto no-repeat,
    #fff;
}

.pathways-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.pathways-head .eyebrow {
  color: var(--purple);
}

.pathways-head h2 {
  margin-top: 12px;
}

.pathways-head p {
  margin-top: 18px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 48px;
}

.pathway-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: 38px;
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: url("/info/assets/images/jupiter-circle-bg-2.png") right -110px bottom -120px / 430px auto no-repeat;
  pointer-events: none;
}

.owner-card {
  background-image: linear-gradient(135deg, #0f1d46, #5040f4);
}

.family-card {
  background-image: linear-gradient(135deg, #17a982, #31b4fe);
}

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

.pathway-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.pathway-card h3 {
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.05;
}

.pathway-card p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

.pathway-card ul {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.55;
}

.pathway-card li::marker {
  color: var(--yellow);
}

.pathway-card strong {
  align-self: end;
  width: fit-content;
  margin-top: 14px;
  padding: 13px 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 5px;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1;
}

.section,
.review-board,
.package-band,
.final-cta {
  padding: 115px max(28px, calc((100vw - 1000px) / 2));
}

.section-copy {
  max-width: 620px;
}

.section-copy.centered,
.review-head {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.26;
  font-weight: 700;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.review-head p,
.package-copy p,
.final-cta p,
.showcase-copy p,
.impact-grid p,
.feature-grid p,
.loop-grid p,
.pricing-grid p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.section-copy p:not(.eyebrow),
.review-head p,
.package-copy p,
.final-cta p {
  margin-top: 18px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  padding-top: 135px;
  background:
    url("/info/assets/images/jupiter-circle-bg.png") left calc(50vw - 650px) top 80px / 420px auto no-repeat,
    #fff;
}

.loop-grid,
.impact-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.loop-grid {
  grid-template-columns: repeat(2, 1fr);
}

.loop-grid article,
.impact-grid article,
.feature-grid article,
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(15, 29, 70, 0.07);
}

.loop-grid article {
  min-height: 230px;
  padding: 28px;
}

.loop-grid span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: white;
  background-image: linear-gradient(135deg, var(--jupiter-left), var(--jupiter-right));
  border-radius: 50%;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.loop-grid article:nth-child(2) span {
  background-image: linear-gradient(135deg, var(--coral), var(--yellow));
}

.loop-grid article:nth-child(3) span {
  background-image: linear-gradient(135deg, var(--green), var(--jupiter-right));
}

.loop-grid article:nth-child(4) span {
  background-image: linear-gradient(135deg, #7d37e1, #e641cd);
}

.loop-grid p {
  margin-top: 12px;
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 360px);
  align-items: center;
  gap: 72px;
  overflow: hidden;
  padding: 108px max(28px, calc((100vw - 1000px) / 2));
  background: #fff;
}

.showcase::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    url("/info/assets/images/jupiter-circle-bg.png") center / cover no-repeat;
  opacity: 0.46;
  pointer-events: none;
}

.showcase-dashboard::before,
.showcase-roster::before {
  right: calc(50vw - 670px);
  top: 90px;
}

.showcase-calendar,
.showcase-message {
  grid-template-columns: minmax(300px, 360px) minmax(0, 0.98fr);
  background: var(--soft);
}

.showcase-calendar::before,
.showcase-message::before {
  left: calc(50vw - 670px);
  top: 90px;
}

.showcase-copy,
.device-panel {
  position: relative;
  z-index: 1;
}

.showcase-copy {
  max-width: 620px;
}

.showcase-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.device-panel {
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(135deg, rgba(80, 64, 244, 0.18), rgba(49, 180, 254, 0.22));
  border: 1px solid rgba(80, 64, 244, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.device-panel img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.audience-lane {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 350px);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 112px max(28px, calc((100vw - 1000px) / 2));
}

.owner-lane {
  background:
    url("/info/assets/images/jupiter-circle-bg.png") right calc(50vw - 670px) center / 480px auto no-repeat,
    #fff;
}

.family-lane {
  grid-template-columns: minmax(300px, 350px) minmax(0, 0.96fr);
  background-image: linear-gradient(to right, var(--jupiter-left) 0%, var(--jupiter-right) 100%);
}

.lane-copy,
.lane-device {
  position: relative;
  z-index: 1;
}

.lane-copy {
  max-width: 650px;
}

.lane-copy h2 {
  margin-top: 12px;
}

.lane-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.family-lane .eyebrow,
.family-lane h2,
.family-lane p:not(.eyebrow) {
  color: #fff;
}

.family-lane p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.lane-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.lane-points article {
  min-height: 150px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 29, 70, 0.08);
}

.family-lane .lane-points article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.lane-points strong {
  display: block;
  color: var(--ink);
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.16rem;
  line-height: 1.2;
}

.lane-points span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.family-lane .lane-points strong,
.family-lane .lane-points span {
  color: #fff;
}

.lane-device {
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.lane-device img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--jupiter-right);
  box-shadow: 0 0 0 6px rgba(49, 180, 254, 0.14);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.mini-grid span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 500;
}

.impact {
  position: relative;
  overflow: hidden;
  color: white;
  background-image: linear-gradient(to right, var(--jupiter-left) 0%, var(--jupiter-right) 100%);
}

.impact::before,
.impact::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.impact::before {
  left: -170px;
  top: 90px;
}

.impact::after {
  right: -160px;
  bottom: -180px;
}

.impact .section-copy,
.impact-grid {
  position: relative;
  z-index: 1;
}

.impact h2,
.impact h3,
.impact .eyebrow {
  color: white;
}

.impact .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.impact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.impact-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.impact-grid small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.impact-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.review-board {
  background: #fff;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.feature-grid article {
  padding: 26px;
}

.feature-grid h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.feature-grid ul {
  margin-top: 16px;
  color: var(--text);
  line-height: 1.55;
}

.feature-grid li::marker {
  color: var(--jupiter-left);
}

.package-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  overflow: hidden;
  background-image: linear-gradient(to right, var(--jupiter-left) 0%, var(--jupiter-right) 100%);
}

.package-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/info/assets/images/jupiter-circle-bg-2.png") right calc(50vw - 640px) top 80px / 430px auto no-repeat;
  opacity: 0.2;
}

.package-copy,
.pricing-grid {
  position: relative;
  z-index: 1;
}

.package-copy {
  position: sticky;
  top: 104px;
}

.package-copy h2,
.package-copy p,
.package-copy .eyebrow {
  color: white;
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  min-height: 230px;
  padding: 28px;
}

.price-card small {
  color: var(--purple);
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.price-card h3 {
  margin-top: 12px;
  font-size: 1.7rem;
}

.price-card p {
  margin-top: 12px;
}

.primary-price {
  color: #fff;
  background: var(--jupiter-deep);
  border-color: rgba(255, 255, 255, 0.2);
}

.primary-price small,
.primary-price h3,
.primary-price p {
  color: white;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #fff;
}

.final-cta > div:first-child {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(28px, calc((100vw - 1000px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--jupiter-deep);
}

.site-footer span:first-child {
  color: white;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .pathways,
  .section,
  .review-board,
  .package-band,
  .final-cta,
  .audience-lane,
  .showcase,
  .site-footer {
    padding-inline: 34px;
  }

  .hero {
    padding-inline: 34px;
  }

  h1 {
    font-size: 3.72rem;
  }

  .hero-path-card {
    padding-right: 156px;
  }

  .hero-path-card::after {
    right: 24px;
  }

  .intro,
  .package-band {
    grid-template-columns: 1fr;
  }

  .lane-points {
    grid-template-columns: 1fr;
  }

  .package-copy {
    position: static;
  }

  .feature-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 88px 20px 76px;
  }

  .hero::after {
    height: 92px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-path-choice {
    margin-top: 26px;
  }

  .hero-path-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-path-card {
    min-height: 180px;
    padding: 22px 120px 22px 22px;
  }

  .hero-path-card::after {
    right: 22px;
    bottom: -16px;
    width: 76px;
    height: 166px;
    border-radius: 17px;
    box-shadow:
      0 14px 34px rgba(15, 29, 70, 0.24),
      0 0 0 5px rgba(15, 29, 70, 0.22);
  }

  .hero-path-card strong {
    font-size: 1.65rem;
  }

  .hero-path-card small {
    font-size: 0.84rem;
    line-height: 1.44;
  }

  .hero-path-card em {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 12px 11px;
    font-size: 0.92rem;
  }

  .hero-product {
    min-height: 226px;
    background-size: 246px auto, auto;
  }

  .phone-shot-main {
    left: 50%;
    right: auto;
    top: 0;
    width: 104px;
    height: 226px;
    transform: translateX(-50%);
    border-radius: 18px;
    box-shadow:
      0 18px 44px rgba(15, 29, 70, 0.24),
      0 0 0 5px rgba(15, 29, 70, 0.24);
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
    margin-top: -45px;
  }

  .signal-strip article {
    min-height: 116px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip strong {
    font-size: 2rem;
  }

  .section,
  .pathways,
  .review-board,
  .package-band,
  .final-cta,
  .audience-lane,
  .showcase {
    padding: 68px 20px;
  }

  .intro,
  .pathway-grid,
  .audience-lane,
  .family-lane,
  .showcase,
  .showcase-calendar,
  .showcase-message,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .pathways {
    padding-top: 82px;
    background-size: 300px auto, auto;
  }

  .pathway-card {
    min-height: auto;
    padding: 28px;
  }

  .pathway-card h3 {
    font-size: 2rem;
  }

  .family-lane .lane-device {
    order: 2;
  }

  .family-lane .lane-copy {
    order: 1;
  }

  .lane-device {
    width: min(100%, 285px);
  }

  .showcase-calendar .device-panel,
  .showcase-message .device-panel {
    order: 2;
  }

  .showcase-calendar .showcase-copy,
  .showcase-message .showcase-copy {
    order: 1;
  }

  .loop-grid,
  .impact-grid,
  .feature-grid,
  .pricing-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .device-panel {
    width: min(100%, 295px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero-path-card {
    min-height: 172px;
    padding: 20px 104px 20px 20px;
  }

  .hero-path-card::after {
    right: 18px;
    bottom: -14px;
    width: 70px;
    height: 152px;
  }

  .hero-path-card strong {
    font-size: 1.42rem;
  }

  .hero-path-card small {
    display: block;
    font-size: 0.78rem;
  }

  .hero-path-card em {
    display: none;
  }

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

  .signal-strip article {
    border-right: 0;
  }
}
