/* Static homepage: campaign hardware, responsive layout, progressive motion. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/manrope-600.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/manrope-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/manrope-800.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/dm-sans-600.woff2") format("woff2");
}
:root {
  --ink: #142f31;
  --muted: #4a6065;
  --green: #086747;
  --paper: #fcfdfc;
  --line: #dce7e7;
  --gutter: max(32px, calc((100vw - 1120px) / 2));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
h1,
h2,
h3,
.brand {
  font-family: Manrope, sans-serif;
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: 100px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
h2 {
  font-size: 54px;
  letter-spacing: -2.2px;
  font-weight: 600;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  font-weight: 700;
}
p {
  margin: 0;
  color: var(--muted);
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
:focus-visible {
  outline: 3px solid #1751b8;
  outline-offset: 5px;
}
#main:focus {
  outline: none;
}
.skip-link {
  position: absolute;
  z-index: 20;
  background: white;
  left: 16px;
  top: 10px;
  padding: 14px 20px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 var(--gutter);
  background: #e6f5fc;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.3px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 52px;
  padding: 17px 23px;
  border-radius: 10px;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #054f36;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #174c3720;
}
.button:active {
  transform: translateY(0);
}
.button.small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 13px;
}
.eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: #2d6853;
  margin-bottom: 22px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 810px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 45px var(--gutter);
  overflow: hidden;
  background: #c8e8f8;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-art img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #c7e8fa 0%,
    #c7e8faf2 23%,
    #c7e8fa55 55%,
    transparent 78%
  );
  z-index: -1;
}
.hero h1 {
  line-height: 1.09;
}
.hero .eyebrow {
  color: #286073;
}
.hero .lead {
  font-size: 21px;
  line-height: 1.65;
  max-width: 465px;
  margin: 28px 0 30px;
  color: #244958;
}
.hero-copy {
  padding-bottom: 5px;
}
.hero-action {
  display: inline-block;
  vertical-align: top;
}
.availability {
  font-size: 12px;
  margin-top: 14px;
  color: #345766;
}
.qr-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 12px;
  line-height: 1.5;
  color: #345766;
}
.qr-note img {
  width: 70px;
  height: 70px;
  border: 5px solid white;
  border-radius: 4px;
}
.qr-note b {
  font-weight: 500;
}
.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device {
  width: 300px;
  flex-shrink: 0;
  filter: drop-shadow(12px 22px 22px #163d4c25);
}
.device img {
  width: 100%;
}
.hero-device .device {
  width: 370px;
  filter: drop-shadow(18px 25px 30px #183e4630);
}
.feature {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 95px 40px;
}
.copy > p:not(.eyebrow):not(.note) {
  font-size: 20px;
  line-height: 1.65;
  margin-top: 24px;
}
.meal-stage {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 28px;
  padding: 20px 0;
  isolation: isolate;
}
.meal-stage .device {
  width: 290px;
  position: relative;
  z-index: 1;
}
.food-photo {
  width: 280px;
  position: absolute;
  left: -5px;
  top: 60px;
  z-index: -1;
  transform: rotate(-10deg);
  box-shadow: 0 14px 25px #36503f18;
  border-radius: 50%;
  overflow: hidden;
}
.feature .copy h2 {
  font-size: 59px;
}
.meal-steps {
  list-style: none;
  padding: 22px 0 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
  font-size: 16px;
  border-top: 1px solid var(--line);
}
.meal-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.meal-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #607e68;
  width: 26px;
  height: 26px;
}
.guidance,
.progress {
  padding: 90px max(40px, calc((100vw - 1120px) / 2));
}
.guidance {
  background: #fff;
  border-top: 1px solid #e3eae3;
  border-bottom: 1px solid #e3eae3;
}
.guidance h2 {
  max-width: 600px;
}
.pro-label {
  font:
    500 12px "DM Sans",
    sans-serif;
  letter-spacing: 0;
  padding: 5px 9px;
  border: 1px solid #91b9ab;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--green);
}
.progress {
  background: #eef5f3;
}
.community {
  max-width: 1200px;
  margin: auto;
  padding: 95px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 65px;
}
.community h2 {
  font-size: 53px;
}
.faq {
  max-width: 1200px;
  margin: auto;
  padding: 95px 40px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.faq h2 {
  font-size: 48px;
}
.faq > div > p:last-child {
  margin-top: 24px;
  font-size: 15px;
}
.faq a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.questions details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.questions summary {
  font-size: 16px;
  min-height: 48px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary:after {
  content: "+";
  font-size: 22px;
}
.questions details[open] summary:after {
  content: "−";
}
.questions p {
  font-size: 14px;
  line-height: 1.65;
  margin: 6px 0 14px;
}
.questions a {
  overflow-wrap: anywhere;
}
.closing {
  background: #123c32;
  color: #f3f7ed;
  padding: 75px max(40px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.closing h2 {
  font-size: 58px;
}
.closing > div > p {
  color: #d0e1d5;
  font-size: 18px;
  margin-bottom: 26px;
}
.closing .button {
  background: #d9edc5;
  color: #193c29;
}
.closing .button:hover {
  background: #eaf8dd;
}
.closing .availability {
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 0;
}
footer {
  padding: 30px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #53685d;
}
footer nav {
  font-size: 13px;
}
.mobile-download {
  display: none;
}
@media (min-width: 701px) and (max-width: 1100px) {
  h2 {
    font-size: 44px;
  }
  .hero {
    min-height: 720px;
    gap: 25px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-device .device {
    width: 290px;
  }
  .hero .lead {
    font-size: 19px;
  }
  .feature,
  .community {
    gap: 40px;
  }
  .feature .copy h2 {
    font-size: 47px;
  }
  .meal-stage {
    min-height: 540px;
    padding: 25px 15px;
  }
  .meal-stage .device {
    width: 240px;
  }
  .food-photo {
    width: 215px;
    top: 105px;
  }
  .pro-label {
    display: inline-block;
    margin: 6px 0 0;
  }
  .community h2 {
    font-size: 44px;
  }
  .faq {
    gap: 45px;
  }
  .closing h2 {
    font-size: 46px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  header {
    height: 74px;
    padding: 0 24px;
  }
  header nav {
    display: none;
  }
  .brand {
    font-size: 26px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 42px 24px 35px;
    min-height: 0;
    gap: 0;
  }
  .hero:before {
    background: linear-gradient(#c7e8fa 0%, #c7e8faf2 33%, #c7e8fa00 67%);
  }
  .hero-art {
    top: 42%;
    height: 58%;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -3px;
  }
  .hero .eyebrow {
    font-size: 13px;
  }
  .hero .lead {
    font-size: 18px;
    margin: 25px 0;
    max-width: 340px;
  }
  .hero-device {
    margin-top: 35px;
  }
  .hero-device .device {
    width: 275px;
  }
  .qr-note {
    display: none;
  }
  .button {
    font-size: 14px;
    min-height: 52px;
    padding: 16px 20px;
    gap: 24px;
  }
  .availability {
    font-size: 11px;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .feature {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 55px 24px;
  }
  .feature .copy {
    order: 0;
  }
  .feature .meal-stage {
    order: 1;
    width: 100%;
    min-height: 530px;
    background: #eaf0e5;
    padding: 25px 15px;
  }
  .feature .copy h2,
  .community h2 {
    font-size: 42px;
  }
  .meal-stage .device {
    width: 235px;
  }
  .food-photo {
    width: 185px;
    left: -10px;
    top: 65px;
  }
  .copy > p:not(.eyebrow):not(.note) {
    font-size: 18px;
    margin-top: 22px;
  }
  .meal-steps {
    font-size: 15px;
    gap: 12px;
  }
  .guidance,
  .progress {
    padding: 55px 24px;
  }
  .pro-label {
    white-space: nowrap;
  }
  .community {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 55px 24px;
  }
  .faq {
    display: block;
    padding: 55px 24px;
  }
  .faq h2 {
    font-size: 38px;
  }
  .faq > div > p:last-child {
    margin-bottom: 26px;
  }
  .questions summary {
    font-size: 15px;
  }
  .closing {
    display: block;
    padding: 48px 24px;
  }
  .closing h2 {
    font-size: 42px;
  }
  .closing > div + div {
    margin-top: 30px;
  }
  .closing > div > p {
    font-size: 17px;
  }
  footer {
    padding: 28px 24px calc(110px + env(safe-area-inset-bottom));
    flex-wrap: wrap;
    gap: 20px;
  }
  footer nav {
    width: 100%;
    gap: 28px;
  }
  .mobile-download:not([hidden]) {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 24px calc(12px + env(safe-area-inset-bottom));
    background: #fffffff5;
    border-top: 1px solid var(--line);
  }
  .mobile-download .button {
    width: 100%;
  }
  html {
    scroll-padding-bottom: 100px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .hero-device {
    animation: device-enter 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .reveal.arrived {
    animation: section-enter 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .device {
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  @media (hover: hover) {
    .meal-stage:hover .device {
      transform: translateY(-9px) rotate(1deg);
    }
  }
}
@keyframes hero-enter {
  from {
    transform: translateY(16px);
  }
  to {
    transform: none;
  }
}
@keyframes device-enter {
  from {
    transform: translateY(34px) rotate(3deg);
  }
  to {
    transform: none;
  }
}
@keyframes section-enter {
  from {
    transform: translateY(22px);
  }
  to {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 1101px) {
  .hero-art {
    left: 12%;
    right: -12%;
  }
}
.hero .lead {
  text-wrap: pretty;
}
:root {
  --ink: #172e3a;
  --muted: #405761;
}
h2 {
  letter-spacing: -1.3px;
  font-weight: 700;
}
.hero h1 {
  letter-spacing: -0.03em;
}
header {
  background: #c7e8fa;
}
.guidance {
  background: #f1f2fb;
  border: 0;
}
.progress {
  background: #edf6f3;
}
.community h2 {
  font-size: 51px;
}
.faq h2 {
  max-width: 330px;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .community h2 {
    font-size: 44px;
  }
}
@media (max-width: 700px) {
  h2 {
    letter-spacing: -1px;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .community h2 {
    font-size: 40px;
  }
}
.guidance {
  background: #173b48;
  color: #f5fafb;
}
.guidance .pro-label {
  color: #bcefdc;
  border-color: #669a94;
}
.closing {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  overflow: hidden;
  background: #c7e8fa;
  color: var(--ink);
}
.closing-copy {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.closing h2 {
  font-size: 64px;
  margin-bottom: 25px;
}
.closing > div > p {
  color: #244958;
}
.closing .button {
  background: var(--green);
  color: white;
}
.closing .button:hover {
  background: #054f36;
}
.closing-art {
  position: absolute;
  inset: 0 0 0 43%;
  background: url("/images/home/brand-glass-768.webp") right center / cover
    no-repeat;
  z-index: 0;
}
.closing-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #c7e8fa, transparent 38%);
}
@media (min-width: 1101px) {
  .hero-art {
    left: 19%;
    right: -1%;
  }
  .hero-art img {
    object-fit: contain;
  }
  .hero-device {
    left: -45px;
  }
}
@media (max-width: 700px) {
  .closing {
    min-height: 0;
    padding-bottom: 180px;
  }
  .closing h2 {
    font-size: 44px;
  }
  .closing-art {
    inset: 45% -40% 0 20%;
    opacity: 0.45;
  }
  .closing-copy {
    max-width: none;
  }
  .closing > div + div {
    margin-top: 0;
  }
}
.hero {
  background: #c7e8fa;
}
.hero-art {
  mask-image: linear-gradient(transparent, #000 12%, #000 91%, transparent);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(transparent, var(--paper));
  z-index: -1;
  pointer-events: none;
}
h3 {
  letter-spacing: 0;
  font-weight: 600;
}
.closing h2 {
  font-weight: 800;
}
.closing-action {
  display: flex;
  align-items: center;
  gap: 25px;
}
.closing-action .qr-note {
  margin: 0;
  font-size: 11px;
  gap: 10px;
}
.closing-action .qr-note img {
  width: 72px;
  height: 72px;
}
.community {
  align-items: start;
}
.community .copy {
  padding-top: 35px;
}
.faq {
  position: relative;
  border-top: 0;
}
.faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) {
  .community .copy {
    padding-top: 0;
  }
  .faq:before {
    left: 24px;
    right: 24px;
  }
  .closing-action {
    display: block;
  }
  .hero:after {
    height: 45px;
  }
}
.screen-note {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 35px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 1199px) {
  .screen-note {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 700px) {
  .screen-note {
    padding: 0 24px 30px;
  }
  .food-photo {
    left: 0;
  }
}
.training-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  background: #153e35;
  padding-top: 90px;
  padding-bottom: 90px;
}
.training-story h2 {
  font-size: 56px;
}
.training-lead {
  font-size: 20px;
  line-height: 1.65;
  margin-top: 26px;
  max-width: 470px;
  color: #d9e9e4;
}
.coach-access {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid #ffffff30;
}
.coach-access h3 {
  font-size: 23px;
  font-weight: 600;
}
.coach-access p {
  font-size: 17px;
  line-height: 1.65;
  color: #d9e9e4;
  margin-top: 16px;
  max-width: 470px;
}
.training-device {
  display: flex;
  justify-content: center;
}
.training-device .device {
  width: 330px;
  filter: drop-shadow(16px 26px 24px #00181055);
}
.progress {
  background: var(--paper);
  padding-top: 100px;
  padding-bottom: 90px;
}
.progress-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}
.progress-heading h2 {
  font-size: 60px;
  text-wrap: balance;
}
.progress-heading p {
  font-size: 20px;
  line-height: 1.65;
  max-width: 620px;
  margin: 24px auto 0;
}
.progress-devices {
  display: flex;
  justify-content: center;
  gap: 110px;
  align-items: start;
}
.progress-devices figure {
  margin: 0;
  width: 340px;
}
.progress-devices .device {
  width: 320px;
  margin: 0 auto;
}
.progress-devices figcaption {
  text-align: center;
  margin-top: 30px;
}
.progress-devices h3 {
  font-size: 24px;
  font-weight: 600;
}
.progress-devices p {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 12px;
}
.community-story {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
  padding-top: 80px;
  padding-bottom: 100px;
}
.community-story .copy {
  padding-top: 0;
}
.community-device {
  display: flex;
  justify-content: center;
}
.community-device .device {
  width: 320px;
}
@media (min-width: 701px) and (max-width: 1100px) {
  .training-story {
    gap: 40px;
  }
  .training-story h2 {
    font-size: 44px;
  }
  .training-device .device {
    width: 270px;
  }
  .progress-devices {
    gap: 45px;
  }
  .progress-devices figure {
    width: 280px;
  }
  .progress-devices .device {
    width: 270px;
  }
  .progress-heading h2 {
    font-size: 50px;
  }
  .community-story {
    gap: 45px;
  }
  .community-device .device {
    width: 280px;
  }
}
@media (max-width: 700px) {
  .training-story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .training-story h2 {
    font-size: 40px;
  }
  .training-lead {
    font-size: 18px;
  }
  .coach-access {
    margin-top: 28px;
    padding-top: 24px;
  }
  .coach-access h3 {
    font-size: 21px;
  }
  .coach-access p {
    font-size: 16px;
  }
  .training-device .device {
    width: 275px;
  }
  .progress {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .progress-heading {
    text-align: left;
    margin-bottom: 38px;
  }
  .progress-heading h2 {
    font-size: 40px;
  }
  .progress-heading p {
    font-size: 18px;
    margin-top: 22px;
  }
  .progress-devices {
    flex-direction: column;
    gap: 45px;
    align-items: center;
  }
  .progress-devices figure {
    width: 100%;
    max-width: 340px;
  }
  .progress-devices .device {
    width: 275px;
  }
  .progress-devices figcaption {
    margin-top: 25px;
  }
  .community-story {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .community-story .copy {
    order: 0;
  }
  .community-device {
    order: 1;
  }
  .community-device .device {
    width: 275px;
  }
}
