@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0e1116;
  --ink-soft: #30353c;
  --muted: #696f77;
  --faint: #9398a0;
  --page: #f4f3ee;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #dcded9;
  --line-dark: rgba(232, 221, 196, .18);
  --cream: #e8ddc4;
  --sage: #a6c97e;
  --sage-soft: #dfead3;
  --blue: #5ba8e8;
  --blue-soft: #e1eef9;
  --amber: #f5c04a;
  --amber-soft: #f9eccd;
  --display: "Plus Jakarta Sans", "Avenir Next", sans-serif;
  --body: "Plus Jakarta Sans", "Avenir Next", sans-serif;
  --shadow-phone: 0 46px 90px -35px rgba(14, 17, 22, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

.shell {
  width: min(calc(100% - 72px), 1240px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

.nav {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 17, 22, .08);
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.text-link,
.footer-links a {
  text-underline-offset: 5px;
  transition: color .2s ease;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--muted);
  text-decoration: underline;
}

.download-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px -25px rgba(14, 17, 22, .85);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), background .2s ease, box-shadow .2s ease;
}

.download-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.download-button:hover {
  background: #24282d;
  box-shadow: 0 20px 38px -24px rgba(14, 17, 22, .9);
  transform: translateY(-2px);
}

.download-button:active {
  transform: translateY(0) scale(.985);
}

.download-button:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.download-button--small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 12px;
}

.download-button--small svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 26%, rgba(91, 168, 232, .13), transparent 25%),
    radial-gradient(circle at 64% 12%, rgba(166, 201, 126, .17), transparent 23%),
    linear-gradient(180deg, #fbfbf8 0%, var(--page) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(14, 17, 22, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 17, 22, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(470px, 1.07fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.hero-copy {
  padding-bottom: 18px;
}

.kicker,
.section-index {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker span {
  width: 28px;
  height: 2px;
  background: var(--sage);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 28px;
  font-size: clamp(53px, 6.5vw, 84px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 em {
  position: relative;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -.08em;
  left: 0;
  height: .15em;
  background: var(--sage);
  content: "";
  transform: skewX(-10deg);
  z-index: -1;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 530;
  line-height: 1.65;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-action p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof span {
  position: relative;
}

.hero-proof span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
  content: "";
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(368px, 66vw);
  transform: rotate(2.5deg);
}

.phone-hardware {
  position: relative;
  padding: 10px;
  border: 1px solid #3e4349;
  border-radius: 54px;
  background: linear-gradient(145deg, #393e44, #090b0e 40%, #22262b 75%, #07080a);
  box-shadow: var(--shadow-phone);
}

.phone-hardware::after {
  position: absolute;
  top: 112px;
  right: -4px;
  width: 4px;
  height: 96px;
  border-radius: 0 4px 4px 0;
  background: #171a1e;
  content: "";
}

.phone-screen {
  position: relative;
  min-height: 690px;
  padding: 54px 18px 18px;
  overflow: hidden;
  border-radius: 44px;
  color: #1a1e22;
  background: #f5f5f2;
}

.dynamic-island {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 98px;
  height: 28px;
  border-radius: 999px;
  background: #080a0c;
  transform: translateX(-50%);
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.app-top small,
.app-top strong {
  display: block;
}

.app-top small {
  color: #777d84;
  font-size: 9px;
  font-weight: 700;
}

.app-top strong {
  margin-top: 2px;
  font-size: 18px;
  letter-spacing: -.04em;
}

.app-top img {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

.crew-card {
  padding: 18px 16px 13px;
  border-radius: 23px;
  color: var(--cream);
  background: var(--ink);
}

.crew-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.crew-title small,
.crew-title strong {
  display: block;
}

.crew-title small {
  color: rgba(232, 221, 196, .57);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.crew-title strong {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: -.03em;
}

.crew-title > span {
  padding: 5px 8px;
  border: 1px solid rgba(232, 221, 196, .2);
  border-radius: 8px;
  color: rgba(232, 221, 196, .72);
  font-size: 8px;
  font-weight: 800;
}

.crew-progress {
  height: 5px;
  margin: 14px 0 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(232, 221, 196, .13);
}

.crew-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.leader-row {
  display: grid;
  grid-template-columns: 20px 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(232, 221, 196, .1);
  font-size: 9px;
}

.rank {
  color: rgba(232, 221, 196, .46);
  font-size: 8px;
  font-weight: 800;
}

.avatar {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
}

.leader-row .avatar {
  width: 28px;
  height: 28px;
}

.avatar--sage {
  background: var(--sage);
}

.avatar--blue {
  background: var(--blue);
}

.avatar--amber {
  background: var(--amber);
}

.person b,
.person small {
  display: block;
}

.person small {
  color: rgba(232, 221, 196, .52);
  font-size: 7px;
}

.today-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 2px 8px;
  font-size: 11px;
}

.today-head span {
  color: #858b92;
  font-size: 8px;
  font-weight: 700;
}

.nutrition-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid #e3e3df;
  border-radius: 20px;
  background: #fff;
}

.calorie-ring {
  display: grid;
  width: 92px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--ink) 0 61%, #e6e6e2 61% 100%);
}

.calorie-ring::before {
  grid-area: 1 / 1;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.calorie-ring span {
  position: relative;
  grid-area: 1 / 1;
  text-align: center;
}

.calorie-ring b,
.calorie-ring small {
  display: block;
}

.calorie-ring b {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.05em;
}

.calorie-ring small {
  margin-top: 3px;
  color: #7d838a;
  font-size: 7px;
  font-weight: 700;
}

.macro-list {
  display: grid;
  gap: 11px;
}

.macro-list > div {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 4px 8px;
  color: #636970;
  font-size: 7px;
  font-weight: 700;
}

.macro-list i,
.board-bars i {
  grid-column: 1 / 2;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #ecece9;
}

.macro-list i b,
.board-bars i b {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.macro-list small {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  color: #92979c;
  text-align: right;
}

.carbs {
  background: var(--sage);
}

.protein {
  background: var(--blue);
}

.fat {
  background: var(--amber);
}

.tab-bar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 6px 8px;
  border: 1px solid #e7e7e3;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 24px -20px rgba(14, 17, 22, .5);
}

.tab-bar span {
  display: grid;
  gap: 3px;
  place-items: center;
  color: #989da3;
  font-size: 6px;
  font-weight: 700;
}

.tab-bar b {
  color: #9da2a7;
  font-size: 12px;
}

.tab-bar .active,
.tab-bar .active b {
  color: var(--ink);
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 17, 22, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 55px -33px rgba(14, 17, 22, .55);
  backdrop-filter: blur(12px);
}

.signal-card--top {
  top: 78px;
  right: -2px;
}

.signal-card--bottom {
  bottom: 72px;
  left: -30px;
}

.signal-card small,
.signal-card strong {
  display: block;
}

.signal-card small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.signal-card strong {
  margin-top: 2px;
  font-size: 11px;
}

.signal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 800;
}

.signal-icon--sage {
  background: var(--sage-soft);
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack .avatar {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-color: #fff;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  padding: 18px 28px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.section {
  padding: clamp(92px, 11vw, 154px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: 70px;
}

.section-intro .section-index {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-intro h2,
.accountability-copy h2,
.partner-heading h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-intro > p:last-child,
.accountability-copy > p,
.final-cta-copy > p:not(.section-index) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section--dark {
  color: var(--cream);
  background:
    linear-gradient(130deg, rgba(166, 201, 126, .08), transparent 34%),
    #0c0d10;
}

.section-intro--light > p:last-child {
  color: rgba(232, 221, 196, .64);
}

.section--dark .section-index {
  color: rgba(232, 221, 196, .46);
}

.principles {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.principles article {
  display: grid;
  grid-template-columns: minmax(100px, .28fr) 1fr;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles article > span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}

.principles article > div {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(280px, .7fr);
  align-items: baseline;
  gap: 40px;
}

.principles h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.04em;
}

.principles p {
  margin: 0;
  color: rgba(232, 221, 196, .62);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  font-size: 18px;
}

.text-link--cream {
  color: var(--cream);
}

.feature-suite {
  background: var(--paper);
}

.feature-suite-intro {
  margin-bottom: 56px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: 18px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.feature-panel-copy {
  position: relative;
  z-index: 2;
}

.feature-panel .feature-num {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.feature-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.feature-panel p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-panel .text-link {
  margin-top: 26px;
}

.feature-panel--nutrition {
  display: grid;
  min-height: 570px;
  grid-template-rows: auto 1fr;
  padding: clamp(30px, 5vw, 58px);
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(166, 201, 126, .08), transparent 48%),
    var(--ink);
}

.feature-panel--nutrition .feature-num,
.feature-panel--nutrition p {
  color: rgba(232, 221, 196, .58);
}

.feature-panel--nutrition .text-link {
  color: var(--cream);
}

.feature-tank {
  align-self: end;
  margin-top: 46px;
  padding: 28px;
  border: 1px solid rgba(232, 221, 196, .15);
  border-radius: 14px;
  background: rgba(232, 221, 196, .055);
}

.feature-tank-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.feature-tank-head span {
  color: rgba(232, 221, 196, .5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.feature-tank-head strong {
  font-size: clamp(66px, 8vw, 104px);
  line-height: .78;
  letter-spacing: -.08em;
}

.feature-tank-meter {
  height: 8px;
  margin: 30px 0 28px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(232, 221, 196, .13);
}

.feature-tank-meter span {
  display: block;
  width: 61%;
  height: 100%;
  border-radius: inherit;
  background: var(--cream);
}

.feature-macros {
  display: grid;
  gap: 17px;
}

.feature-macros > div {
  display: grid;
  grid-template-columns: minmax(110px, .45fr) 1fr 34px;
  align-items: center;
  gap: 12px;
  color: rgba(232, 221, 196, .72);
  font-size: 9px;
  font-weight: 700;
}

.feature-macros i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(232, 221, 196, .12);
}

.feature-macros i b {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.feature-macros strong {
  color: var(--cream);
  font-size: 9px;
  text-align: right;
}

.feature-panel--sharing,
.feature-panel--training {
  display: grid;
  min-height: 276px;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .62fr);
  align-items: center;
  gap: 24px;
  padding: clamp(26px, 3.5vw, 40px);
}

.feature-panel--sharing {
  background: var(--sage-soft);
}

.feature-panel--training {
  background: var(--blue-soft);
}

.feature-panel--sharing h3,
.feature-panel--training h3 {
  max-width: 12ch;
  font-size: clamp(24px, 2.5vw, 34px);
}

.share-flow {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.meal-ticket {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(14, 17, 22, .09);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  transform: rotate(-2deg);
}

.meal-ticket--received {
  transform: rotate(2deg);
}

.meal-ticket span,
.meal-ticket strong,
.meal-ticket small {
  display: block;
}

.meal-ticket span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.meal-ticket strong {
  margin-top: 6px;
  font-size: 13px;
}

.meal-ticket small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
}

.share-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.training-week {
  padding: 16px;
  border: 1px solid rgba(14, 17, 22, .09);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
}

.training-week-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.training-week-head span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.training-week-head strong {
  font-size: 11px;
}

.training-bars {
  display: grid;
  height: 118px;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 7px;
  margin-top: 16px;
}

.training-bars > span {
  position: relative;
  height: var(--height);
  min-height: 18px;
  border-radius: 4px 4px 2px 2px;
  background: rgba(14, 17, 22, .12);
}

.training-bars > span.done {
  background: var(--ink);
}

.training-bars i {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  color: var(--muted);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.product-story {
  background: var(--page);
}

.product-board {
  overflow: hidden;
  border: 1px solid #d7d8d3;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 30px 80px -58px rgba(14, 17, 22, .55);
}

.board-nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.board-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.board-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.board-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.board-main {
  padding: clamp(32px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.board-label {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.board-number {
  display: flex;
  align-items: end;
  gap: 17px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.board-number strong {
  font-size: clamp(72px, 10vw, 124px);
  line-height: .82;
  letter-spacing: -.08em;
}

.board-number span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.board-bars {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.board-bars > div > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.board-bars i {
  height: 8px;
}

.board-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.board-challenge,
.board-note {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 48px);
}

.board-challenge {
  border-bottom: 1px solid var(--line);
  background: var(--sage-soft);
}

.board-challenge > div > strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.board-score {
  align-self: flex-end;
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.07em;
}

.board-note {
  background: var(--ink);
  color: var(--cream);
}

.board-note span,
.board-note small {
  color: rgba(232, 221, 196, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.board-note strong {
  max-width: 15ch;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.feature-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.feature-ledger article {
  padding: 28px 26px 10px 0;
}

.feature-ledger article:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 26px;
}

.feature-num {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.feature-ledger h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  letter-spacing: -.035em;
}

.feature-ledger p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.accountability {
  background: var(--paper);
}

.accountability-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(340px, .84fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.accountability-visual {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 30px 70px -55px rgba(14, 17, 22, .65);
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.ranking-head span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ranking-head strong {
  font-size: 16px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 28px 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-position {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.ranking-row .avatar {
  width: 44px;
  height: 44px;
  border-color: var(--white);
  font-size: 10px;
}

.ranking-row > span:nth-child(3) b,
.ranking-row > span:nth-child(3) small {
  display: block;
}

.ranking-row > span:nth-child(3) small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.ranking-row > strong {
  font-size: 28px;
  letter-spacing: -.05em;
}

.accountability-visual button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

.accountability-copy h2 {
  margin-bottom: 28px;
}

.accountability-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.accountability-copy li {
  display: flex;
  gap: 10px;
}

.accountability-copy li span {
  color: #628a3c;
}

.partner-section {
  color: var(--cream);
  background:
    linear-gradient(130deg, rgba(91, 168, 232, .07), transparent 38%),
    #111317;
}

.partner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: end;
  gap: clamp(52px, 9vw, 130px);
  margin-bottom: 66px;
}

.partner-heading .section-index {
  color: rgba(232, 221, 196, .44);
}

.partner-heading h2 {
  max-width: 10ch;
}

.partner-heading > div:last-child > p {
  margin-bottom: 28px;
  color: rgba(232, 221, 196, .62);
  font-size: 16px;
  line-height: 1.7;
}

.partner-models {
  border-top: 1px solid var(--line-dark);
}

.partner-models article {
  display: grid;
  grid-template-columns: 54px minmax(210px, .72fr) minmax(290px, 1fr) minmax(170px, .55fr);
  align-items: baseline;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.partner-number,
.partner-label {
  color: rgba(232, 221, 196, .4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.partner-models h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.partner-models article > p {
  margin: 0;
  color: rgba(232, 221, 196, .64);
  font-size: 13px;
  line-height: 1.65;
}

.partner-models article > small {
  color: rgba(232, 221, 196, .4);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.partner-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.partner-principles > div {
  padding: 26px 24px 26px 0;
}

.partner-principles > div:not(:last-child) {
  margin-right: 24px;
  border-right: 1px solid var(--line-dark);
}

.partner-principles strong,
.partner-principles span {
  display: block;
}

.partner-principles strong {
  font-size: 13px;
}

.partner-principles span {
  margin-top: 7px;
  color: rgba(232, 221, 196, .48);
  font-size: 10px;
  line-height: 1.55;
}

.partner-process {
  display: grid;
  grid-template-columns: minmax(270px, .64fr) minmax(480px, 1.36fr);
  gap: clamp(52px, 9vw, 128px);
  margin-top: 72px;
}

.partner-process-copy h3 {
  max-width: 12ch;
  margin: 10px 0 18px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.partner-process-copy > p:last-child {
  color: rgba(232, 221, 196, .56);
  font-size: 13px;
  line-height: 1.7;
}

.partner-process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.partner-process li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.partner-process li > span {
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.partner-process li strong {
  display: block;
  font-size: 14px;
}

.partner-process li p {
  margin: 4px 0 0;
  color: rgba(232, 221, 196, .5);
  font-size: 11px;
}

.partner-contact {
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 72px;
  padding: 34px 38px;
  border: 1px solid rgba(232, 221, 196, .15);
  background: rgba(232, 221, 196, .055);
}

.partner-contact span {
  color: rgba(232, 221, 196, .42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.partner-contact h3 {
  margin: 7px 0 7px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.04em;
}

.partner-contact p {
  margin: 0;
  color: rgba(232, 221, 196, .5);
  font-size: 11px;
}

.faq {
  background: var(--page);
}

.faq-directory {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: clamp(54px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 42px;
}

.faq-intro h2 {
  margin-bottom: 26px;
}

.faq-intro > p:not(.section-index) {
  max-width: 39ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-facts {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.faq-facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.faq-facts span {
  color: var(--muted);
  font-weight: 700;
}

.faq-facts strong {
  text-align: right;
}

.faq-groups {
  display: grid;
  gap: 46px;
}

.faq-group {
  border-top: 1px solid var(--ink);
}

.faq-group > h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 20px 0 10px;
  font-size: 14px;
  letter-spacing: -.01em;
}

.faq-group > h3 span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  flex: 0 0 auto;
  color: var(--muted);
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 690px;
  padding: 0 48px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-answer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-group--standdown {
  padding: 0 18px 8px;
  border: 1px solid #d9d0ba;
  background: rgba(232, 221, 196, .38);
}

.faq-group--standdown details {
  border-color: #d9d0ba;
}

.final-cta {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(166, 201, 126, .12), transparent 42%),
    #0c0d10;
}

.final-cta-grid {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .7fr);
  align-items: center;
  gap: 70px;
}

.final-cta .section-index {
  color: rgba(232, 221, 196, .48);
}

.final-cta h2 {
  max-width: 12ch;
  margin-bottom: 26px;
}

.final-cta-copy > p:not(.section-index) {
  max-width: 560px;
  color: rgba(232, 221, 196, .62);
}

.download-button--cream {
  margin-top: 28px;
  border-color: var(--cream);
  color: #1a1408;
  background: var(--cream);
}

.download-button--cream:hover {
  color: #1a1408;
  background: #f1e6ce;
}

.mascot-stage {
  position: relative;
  align-self: end;
  min-height: 550px;
}

.mascot-stage::before {
  position: absolute;
  right: 4%;
  bottom: 42px;
  left: 4%;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .26);
  filter: blur(22px);
  content: "";
}

.mascot-stage img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: min(500px, 42vw);
  max-height: 570px;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(.92) contrast(1.02);
}

.mascot-line {
  position: absolute;
  top: 80px;
  left: -28px;
  z-index: 2;
  color: rgba(232, 221, 196, .35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.8;
  transform: rotate(-5deg);
}

footer {
  padding: 70px 0 26px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(3, 1fr);
  gap: 48px;
}

.footer-grid > div:first-child p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(410px, 1fr);
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 68px);
  }

  .signal-card--top {
    right: -18px;
  }

  .signal-card--bottom {
    left: -8px;
  }

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

  .feature-ledger article:nth-child(2) {
    margin-right: 0;
    border-right: 0;
  }

  .feature-ledger article:nth-child(n+3) {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
}

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

  .hero {
    padding-top: 126px;
  }

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

  .hero-copy {
    max-width: 740px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(56px, 10vw, 80px);
  }

  .hero-product {
    min-height: 700px;
  }

  .signal-card--top {
    right: 8%;
  }

  .signal-card--bottom {
    left: 8%;
  }

  .section-intro,
  .accountability-grid,
  .partner-heading,
  .partner-process,
  .faq-directory {
    grid-template-columns: 1fr;
  }

  .section-intro .section-index {
    margin-bottom: -10px;
  }

  .section-intro {
    gap: 30px;
  }

  .principles article > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .feature-panel--nutrition {
    min-height: 520px;
  }

  .partner-models article {
    grid-template-columns: 48px minmax(200px, .72fr) minmax(300px, 1fr);
  }

  .partner-models article > small {
    grid-column: 2 / -1;
  }

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

  .partner-principles > div:nth-child(2) {
    margin-right: 0;
    border-right: 0;
  }

  .partner-principles > div:nth-child(n+3) {
    border-top: 1px solid var(--line-dark);
  }

  .faq-intro {
    position: static;
  }

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

  .board-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .board-challenge {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .accountability-visual {
    max-width: 640px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr .72fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), 1240px);
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    font-size: 16px;
  }

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

  .download-button--small {
    padding: 0 13px;
  }

  .download-button--small svg {
    width: 16px;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 66px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero h1 em {
    white-space: normal;
  }

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

  .hero-action .download-button {
    width: 100%;
  }

  .hero-proof {
    gap: 12px 20px;
  }

  .hero-product {
    min-height: 635px;
    margin-top: 16px;
  }

  .phone {
    width: min(330px, 91vw);
  }

  .phone-screen {
    min-height: 640px;
  }

  .signal-card {
    min-width: 190px;
    padding: 11px 13px;
  }

  .signal-card--top {
    top: 38px;
    right: -10px;
  }

  .signal-card--bottom {
    bottom: 30px;
    left: -4px;
  }

  .ticker-track {
    justify-content: flex-start;
    overflow: hidden;
  }

  .ticker-track span:nth-of-type(n+4),
  .ticker-track i:nth-of-type(n+4) {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro {
    margin-bottom: 50px;
  }

  .section-intro h2,
  .accountability-copy h2,
  .partner-heading h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .principles article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .feature-panel--nutrition,
  .feature-panel--sharing,
  .feature-panel--training {
    grid-template-columns: 1fr;
  }

  .feature-panel--nutrition {
    min-height: 540px;
    padding: 28px 20px;
  }

  .feature-panel--sharing,
  .feature-panel--training {
    min-height: 0;
    padding: 28px 20px 36px;
  }

  .feature-panel--sharing h3,
  .feature-panel--training h3 {
    max-width: 14ch;
  }

  .feature-tank {
    padding: 22px 16px;
  }

  .feature-macros > div {
    grid-template-columns: 100px 1fr 30px;
  }

  .share-flow,
  .training-week {
    margin-top: 12px;
  }

  .partner-heading {
    margin-bottom: 48px;
  }

  .partner-heading h2 {
    max-width: 11ch;
  }

  .partner-models article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .partner-models article > p,
  .partner-models article > small {
    grid-column: 2;
  }

  .partner-principles {
    grid-template-columns: 1fr;
  }

  .partner-principles > div,
  .partner-principles > div:not(:last-child) {
    margin: 0;
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid var(--line-dark);
  }

  .partner-principles > div:first-child {
    border-top: 0;
  }

  .partner-process {
    margin-top: 56px;
  }

  .partner-contact {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
    padding: 28px 22px;
  }

  .product-board {
    border-radius: 14px;
  }

  .board-nav {
    padding: 0 18px;
  }

  .board-main {
    padding: 30px 20px;
  }

  .board-number {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .board-number strong {
    font-size: 76px;
  }

  .board-side {
    grid-template-columns: 1fr;
  }

  .board-challenge {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-challenge,
  .board-note {
    min-height: 210px;
    padding: 28px 22px;
  }

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

  .feature-ledger article,
  .feature-ledger article:not(:last-child) {
    margin: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .feature-ledger article:first-child {
    border-top: 0;
  }

  .accountability-visual {
    padding: 22px 18px;
  }

  .ranking-row {
    grid-template-columns: 22px 40px 1fr auto;
    gap: 9px;
  }

  .ranking-row .avatar {
    width: 40px;
    height: 40px;
  }

  .ranking-row > strong {
    font-size: 22px;
  }

  .faq summary {
    min-height: 70px;
    font-size: 14px;
  }

  .faq-answer {
    padding-right: 24px;
  }

  .faq-group--standdown {
    padding-right: 14px;
    padding-left: 14px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 84px;
  }

  .final-cta-copy {
    position: relative;
    z-index: 2;
  }

  .final-cta-copy .download-button {
    width: 100%;
  }

  .mascot-stage {
    min-height: 400px;
  }

  .mascot-stage img {
    right: 50%;
    width: min(440px, 100vw);
    transform: translateX(50%);
  }

  .mascot-line {
    top: 28px;
    left: 8px;
  }

  footer {
    padding-top: 54px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
}

@media (max-width: 390px) {
  .download-button--small span {
    max-width: 86px;
    overflow: hidden;
    white-space: nowrap;
  }

  .phone-screen {
    min-height: 610px;
  }

  .nutrition-card {
    grid-template-columns: 92px 1fr;
    padding: 12px;
  }

  .calorie-ring {
    width: 82px;
  }

  .calorie-ring::before {
    width: 64px;
  }

  .signal-card--top {
    right: -15px;
  }

  .signal-card--bottom {
    left: -10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
