@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: #5f674d;
  --faint: #7e8964;
  --page: #f4f7ee;
  --paper: #fbfcf7;
  --white: #ffffff;
  --line: #dde5c2;

  /* Ink on the dark sections. Near-white, mirroring the app's dark `primary`.
     The warm cream #e8ddc4 this replaces was retired 2026-07-03. */
  --dark-ink: #f2f4f8;
  --line-dark: rgba(242, 244, 248, .16);

  /* Brand — Quitschgrün, DDR-003. Two roles, exactly as in the app, and mixing
     them is the one way to break this palette:
       --brand      FILL ONLY — pills, bars, filled buttons. Always under
                    --brand-ink. Never a bare `color:` on a light surface,
                    where it is 1.29:1 and simply invisible.
       --brand-deep the brand as a MARK — text, icons, hairlines on light
                    (5.15:1 on white). On the dark sections this flips to the
                    full brand, see the .section--dark override below. */
  --brand: #c8f23c;
  --brand-ink: #12151f;
  --brand-deep: #677d1f;
  --brand-soft: #f0fbd2;

  /* Macro and decorative hues — one green family, separated by value. */
  --carbs: #455415;
  --protein: #677d1f;
  --fat: #89a629;
  --sky: #89a629;
  --sky-soft: #eef3df;
  --accent-amber: #aacf34;
  --accent-amber-soft: #e1e6c8;
  --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);
}

/* The dark surfaces. These are class-scoped, not prefers-color-scheme, so the
   adaptive halves of the app's tokens have to be re-declared here.

   `--brand-deep` exists only so the brand stays legible without a fill behind
   it — on a near-black ground the full brand already clears 14:1, so the deep
   variant would be needlessly muddy. This is the CSS counterpart of the app's
   adaptive `brandDeep` (#677d1f light / #c8f23c dark).

   The macro trio switches to its dark halves for the same reason the app does:
   the light values only reach 4.17–5.82:1 on #0c0d10 where the dark ones reach
   7.60–12.20:1. Now a macro bar reads the same on the site as in the app.

   Every dark surface must be listed, or a brand-tinted mark or macro bar inside
   it silently falls back to the light value. */
.section--dark,
.feature-panel--nutrition,
.partner-section,
.final-cta,
.crew-card,
.board-note,
.share-arrow {
  --brand-deep: #c8f23c;
  --carbs: #c8f23c;
  --protein: #aacf34;
  --fat: #89a629;
}

* {
  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 {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  line-height: 1;
}

.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(--brand-deep);
  outline-offset: 4px;
}

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

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

.site-header--subpage {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 248, .92);
  backdrop-filter: blur(14px);
}

.download-button--text-only {
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 26%, rgba(88, 102, 234, .13), transparent 25%),
    radial-gradient(circle at 64% 12%, rgba(200, 242, 60, .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(--brand-deep);
}

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(--brand);
  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(--dark-ink);
  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(242, 244, 248, .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(242, 244, 248, .2);
  border-radius: 8px;
  color: rgba(242, 244, 248, .72);
  font-size: 8px;
  font-weight: 800;
}

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

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

.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(242, 244, 248, .1);
  font-size: 9px;
}

.rank {
  color: rgba(242, 244, 248, .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--you {
  color: var(--brand-ink);
  background: var(--brand);
}

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

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

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

.person small {
  color: rgba(242, 244, 248, .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(--carbs);
}

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

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

.tab-bar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 10px 5px 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;
  min-width: 0;
  place-items: center;
  color: #989da3;
  font-size: 5.5px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.tab-bar b {
  color: #9da2a7;
  font-size: 10px;
  line-height: 1;
}

.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--brand {
  background: var(--brand-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(--brand-deep);
}

.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:not(.section-index),
.final-cta-copy > p:not(.section-index) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section--dark {
  color: var(--dark-ink);
  background:
    linear-gradient(130deg, rgba(200, 242, 60, .08), transparent 34%),
    #0c0d10;
}

.section-intro--light > p:last-child {
  color: rgba(242, 244, 248, .64);
}

.section--dark .section-index {
  color: rgba(242, 244, 248, .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(--brand-deep);
  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(242, 244, 248, .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--light {
  color: var(--dark-ink);
}

.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(--dark-ink);
  background:
    linear-gradient(145deg, rgba(200, 242, 60, .08), transparent 48%),
    var(--ink);
}

.feature-panel--nutrition .feature-num,
.feature-panel--nutrition p {
  color: rgba(242, 244, 248, .58);
}

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

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

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

.feature-tank-head span {
  color: rgba(242, 244, 248, .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(242, 244, 248, .13);
}

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

.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(242, 244, 248, .72);
  font-size: 9px;
  font-weight: 700;
}

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

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

.feature-macros strong {
  color: var(--dark-ink);
  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(--brand-soft);
}

.feature-panel--training {
  background: var(--sky-soft);
  /* Pre-existing AA miss, caught by the DDR-003 contrast sweep and unrelated to
     the brand change: --muted is 4.30:1 on this panel's tint, so the body copy
     sat just under 4.5. Darkened only inside the panel — the global --muted is
     fine everywhere else. */
  --muted: #5f656d;
}

.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 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.meal-ticket span svg,
.share-arrow svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.meal-ticket span svg {
  width: 11px;
  height: 11px;
}

.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(--dark-ink);
  background: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.share-arrow svg {
  width: 15px;
  height: 15px;
}

.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(--brand-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(--dark-ink);
}

.board-note span,
.board-note small {
  color: rgba(242, 244, 248, .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(--brand-ink);
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

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

.accountability-copy .section-index {
  margin-bottom: 26px;
  font-size: 11px;
  line-height: 1.1;
}

.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(--dark-ink);
  background:
    linear-gradient(130deg, rgba(88, 102, 234, .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-section .section-index {
  color: rgba(242, 244, 248, .44);
}

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

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

.partner-heading .download-button,
.partner-contact .download-button {
  margin-top: 0;
}

.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(242, 244, 248, .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(242, 244, 248, .64);
  font-size: 13px;
  line-height: 1.65;
}

.partner-models article > small {
  color: rgba(242, 244, 248, .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(242, 244, 248, .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(242, 244, 248, .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(--brand-deep);
  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(242, 244, 248, .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(242, 244, 248, .15);
  background: rgba(242, 244, 248, .055);
}

.partner-contact span {
  color: rgba(242, 244, 248, .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(242, 244, 248, .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(242, 244, 248, .38);
}

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

.final-cta {
  color: var(--dark-ink);
  background:
    linear-gradient(115deg, rgba(200, 242, 60, .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(242, 244, 248, .48);
}

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

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

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

.download-button--light:hover {
  color: #1a1408;
  background: #dfe4ec;
}

.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(242, 244, 248, .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 {
    gap: 14px;
    min-height: 74px;
  }

  .brand {
    font-size: 16px;
  }

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

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

  .download-button--small span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

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

  .download-button--small.download-button--text-only {
    width: auto;
    flex-basis: auto;
    padding: 0 14px;
  }

  .download-button--small.download-button--text-only span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 58px);
    letter-spacing: -.045em;
  }

  .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;
    font-size: 10px;
  }

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

  .phone {
    width: min(314px, 84vw);
  }

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

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

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

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

  .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) {
  .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;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   04 / DAS GANZE BILD — controlled vertical selector driving a live preview.
   ══════════════════════════════════════════════════════════════════════════
   Left: four expandable items (only one open). Right: a preview stage whose
   content card and atmosphere layer both crossfade on switch.

   Motion contract (mirrors the reference interaction):
     left expand   420ms  cubic-bezier(.32,.72,0,1) + 55ms child stagger
     left collapse 300ms  (asymmetric on purpose — collapse reads faster)
     panel out     300ms  opacity 0 / scale .965
     panel in      480ms  opacity 1 / scale 1, children staggered
     atmosphere    760ms  soft dissolve, motion never stops
   The whole switch lands under 600ms. Nothing is linear.

   Progressive enhancement: item 01 ships expanded in the markup, so the
   section reads fine with JS off. `whole-picture.js` only moves state. */

:root {
  /* Opt-in serif, only for this section's headline. Zero bytes: `ui-serif`
     resolves to New York on Apple platforms (our primary audience), Georgia
     everywhere else. Delete this one declaration on .picture h2 to fall back
     to the site's Plus Jakarta Sans. */
  --display-serif: ui-serif, "New York", Georgia, "Iowan Old Style", serif;
  --shadow-lift: 0 22px 44px -26px rgba(14, 17, 22, .34);
  --shadow-stage: 0 54px 110px -44px rgba(14, 17, 22, .46);
  --ease-glass: cubic-bezier(.32, .72, 0, 1);
}

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

.picture h2 {
  font-family: var(--display-serif);
  font-weight: 600;
  letter-spacing: -.035em;
}

.picture .section-intro {
  margin-bottom: clamp(48px, 6vw, 78px);
}

/* The shared rule pulls the index down onto a bare h2. This section puts an
   eyebrow line in between, so give the negative margin back. */
.picture .section-intro .section-index {
  margin-bottom: -8px;
}

.picture-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: -.01em;
}

.picture-lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.62;
}

.picture-grid {
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

/* ── Left: the selector ────────────────────────────────────────────────── */

.picture-list {
  display: grid;
  gap: 10px;
}

.picture-item {
  display: block;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    background .34s var(--ease-glass),
    border-color .34s var(--ease-glass),
    box-shadow .34s var(--ease-glass),
    transform .34s var(--ease-glass),
    color .3s ease;
}

.picture-item:hover {
  color: var(--ink-soft);
  transform: translateY(-1px);
}

.picture-item:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.picture-item[aria-selected="true"] {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
  cursor: default;
  transform: none;
}

.picture-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.picture-item-title {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
}

/* The dot: empty ring when idle, filled when open, spinning arc mid-switch. */
.picture-dot {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  transition: border-color .34s var(--ease-glass);
}

.picture-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--brand-deep);
  opacity: 0;
  transform: scale(.4);
  transition:
    opacity .3s var(--ease-glass),
    transform .38s var(--ease-glass);
}

.picture-item[aria-selected="true"] .picture-dot {
  border-color: var(--brand-deep);
}

.picture-item[aria-selected="true"] .picture-dot::after {
  opacity: 1;
  transform: scale(1);
}

.picture-item.is-switching .picture-dot {
  border-color: var(--line);
  border-top-color: var(--brand-deep);
  animation: picture-spin .48s linear infinite;
}

.picture-item.is-switching .picture-dot::after {
  opacity: 0;
  transform: scale(.4);
}

@keyframes picture-spin {
  to { transform: rotate(360deg); }
}

/* Height animation without measuring: 0fr → 1fr is exact at any wrap. */
.picture-item-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s var(--ease-glass);
}

.picture-item[aria-selected="true"] .picture-item-body {
  grid-template-rows: 1fr;
  transition-duration: .42s;
}

.picture-item-body > div {
  min-height: 0;
}

.picture-item-copy {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .3s ease,
    transform .3s var(--ease-glass);
}

.picture-points {
  margin: 14px 0 2px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.picture-points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity .3s ease,
    transform .34s var(--ease-glass);
}

.picture-points li::before {
  content: "↳";
  flex: none;
  color: var(--brand-deep);
  font-weight: 700;
}

.picture-item[aria-selected="true"] .picture-item-copy,
.picture-item[aria-selected="true"] .picture-points li {
  opacity: 1;
  transform: none;
}

/* Staggered reveal: copy first, then each bullet 55ms behind the last. */
.picture-item[aria-selected="true"] .picture-item-copy { transition-delay: .06s; }
.picture-item[aria-selected="true"] .picture-points li:nth-child(1) { transition-delay: .13s; }
.picture-item[aria-selected="true"] .picture-points li:nth-child(2) { transition-delay: .185s; }
.picture-item[aria-selected="true"] .picture-points li:nth-child(3) { transition-delay: .24s; }

/* ── Right: the preview stage ──────────────────────────────────────────── */

.picture-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 34px);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: var(--shadow-stage);
}

/* Atmosphere: four stacked CSS-only motion fields. No video, no external
   asset — keeps the self-hosted CSP and the page weight honest. */
.picture-atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity .76s ease;
  will-change: opacity;
}

.picture-atmos[data-atmos-active] {
  opacity: 1;
}

.picture-atmos::before,
.picture-atmos::after {
  content: "";
  position: absolute;
  inset: -35%;
  filter: blur(34px) saturate(1.15);
  animation: picture-drift 26s ease-in-out infinite alternate;
}

.picture-atmos::after {
  animation-duration: 34s;
  animation-direction: alternate-reverse;
  mix-blend-mode: screen;
}

@keyframes picture-drift {
  from { transform: translate3d(-6%, -3%, 0) scale(1.06) rotate(-3deg); }
  to   { transform: translate3d(7%, 4%, 0) scale(1.16) rotate(4deg); }
}

/* 01 — green field, low sun */
.picture-atmos--stand::before {
  background:
    radial-gradient(42% 58% at 22% 74%, #e4fa9e 0%, transparent 62%),
    radial-gradient(52% 44% at 76% 30%, #9ec93a 0%, transparent 66%),
    linear-gradient(168deg, #21351a 0%, #4a7a00 52%, #16210f 100%);
}

.picture-atmos--stand::after {
  background:
    radial-gradient(30% 22% at 62% 82%, rgba(242, 244, 248, .5) 0%, transparent 70%),
    radial-gradient(24% 40% at 14% 22%, rgba(200, 242, 60, .55) 0%, transparent 72%);
}

/* 02 — dawn sky, horizontal speed */
.picture-atmos--change::before {
  background:
    radial-gradient(48% 40% at 18% 26%, #8fc6f2 0%, transparent 64%),
    radial-gradient(46% 52% at 82% 76%, #2f4f78 0%, transparent 68%),
    linear-gradient(104deg, #10233c 0%, #2d5680 48%, #0d1a2c 100%);
}

.picture-atmos--change::after {
  background:
    linear-gradient(96deg, transparent 0%, rgba(143, 198, 242, .42) 34%, transparent 44%,
      rgba(242, 244, 248, .3) 62%, transparent 72%);
}

/* 03 — warm paper, archive light */
.picture-atmos--source::before {
  background:
    radial-gradient(44% 50% at 76% 24%, #f3d79a 0%, transparent 62%),
    radial-gradient(40% 46% at 20% 78%, #a8763a 0%, transparent 66%),
    linear-gradient(152deg, #3a2a15 0%, #6b4d24 50%, #241a0e 100%);
}

.picture-atmos--source::after {
  background:
    radial-gradient(26% 30% at 46% 46%, rgba(245, 192, 74, .48) 0%, transparent 72%),
    radial-gradient(22% 26% at 84% 70%, rgba(242, 244, 248, .34) 0%, transparent 74%);
}

/* 04 — night gym, green pulse */
.picture-atmos--next::before {
  background:
    radial-gradient(38% 46% at 74% 70%, #8ec22e 0%, transparent 62%),
    radial-gradient(46% 40% at 22% 26%, #2c3f52 0%, transparent 66%),
    linear-gradient(196deg, #10141a 0%, #263524 54%, #0a0d12 100%);
}

.picture-atmos--next::after {
  background:
    radial-gradient(20% 26% at 58% 34%, rgba(200, 242, 60, .5) 0%, transparent 74%),
    radial-gradient(28% 22% at 26% 82%, rgba(91, 168, 232, .28) 0%, transparent 76%);
}

/* Vignette: lifts the white card off the atmosphere and keeps the stage edges
   from going flat where two gradients meet. */
.picture-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 44%, transparent 0%, rgba(8, 10, 14, .34) 100%);
}

/* Panels share one grid cell, so the stage is as tall as the tallest card
   and no fixed height has to be guessed. */
.picture-panels {
  position: relative;
  z-index: 1;
  display: grid;
}

.picture-panel {
  grid-area: 1 / 1;
  padding: clamp(20px, 2.2vw, 28px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 48px -30px rgba(14, 17, 22, .5);
  opacity: 0;
  transform: scale(.965);
  visibility: hidden;
  transition:
    opacity .3s ease,
    transform .3s var(--ease-glass),
    visibility 0s linear .3s;
}

.picture-panel[data-panel-active] {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition:
    opacity .34s ease,
    transform .48s var(--ease-glass),
    visibility 0s;
}

.picture-panel > * {
  opacity: 0;
  transform: translateY(11px);
  transition:
    opacity .3s ease,
    transform .38s var(--ease-glass);
}

.picture-panel[data-panel-active] > * {
  opacity: 1;
  transform: none;
}

.picture-panel[data-panel-active] > *:nth-child(1) { transition-delay: .09s; }
.picture-panel[data-panel-active] > *:nth-child(2) { transition-delay: .15s; }
.picture-panel[data-panel-active] > *:nth-child(3) { transition-delay: .21s; }
.picture-panel[data-panel-active] > *:nth-child(4) { transition-delay: .27s; }

.picture-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.picture-panel-head span {
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.picture-panel-head strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* Bars fill on activation: width resets to 0 while the panel is hidden. */
.picture-meter {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.picture-meter > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 999px;
  background: var(--brand);
  transition: width .82s var(--ease-glass) .18s;
}

.picture-panel[data-panel-active] .picture-meter > i {
  width: var(--fill, 0%);
}

/* 01 — today */
.picture-big {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.picture-big b {
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 780;
  letter-spacing: -.05em;
  line-height: .9;
}

.picture-big small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 6px;
}

.picture-macros {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.picture-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.picture-slots > span {
  display: grid;
  gap: 5px;
  justify-items: center;
  padding: 10px 4px;
  border-radius: 12px;
  background: var(--page);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.picture-slots > span::before {
  content: "○";
  font-size: 13px;
  line-height: 1;
}

.picture-slots > span.done {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.picture-slots > span.done::before {
  content: "●";
  color: var(--brand-deep);
}

.picture-macros > div {
  display: grid;
  grid-template-columns: 108px 1fr 44px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}

.picture-macros span { color: var(--muted); }
.picture-macros strong { text-align: right; letter-spacing: -.02em; }
.picture-macros .picture-meter { height: 8px; }
/* The bar fill defaults to --brand, and `.picture-meter > i` outranks main's
   bare `.carbs`/`.protein`/`.fat` — so re-assert the macro hues here or all
   three bars silently render brand lime (DDR-002 colour coding lost). */
.picture-meter > i.carbs { background: var(--carbs); }
.picture-meter > i.protein { background: var(--protein); }
.picture-meter > i.fat { background: var(--fat); }

/* 02 — last seven days */
.picture-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 132px;
  margin-bottom: 18px;
}

.picture-week > span {
  position: relative;
  display: block;
  height: var(--h, 40%);
  border-radius: 8px 8px 4px 4px;
  background: var(--brand-soft);
  transform: scaleY(.14);
  transform-origin: bottom center;
  transition: transform .6s var(--ease-glass);
}

.picture-week > span.done { background: var(--brand); }

.picture-panel[data-panel-active] .picture-week > span { transform: none; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(1) { transition-delay: .16s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(2) { transition-delay: .2s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(3) { transition-delay: .24s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(4) { transition-delay: .28s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(5) { transition-delay: .32s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(6) { transition-delay: .36s; }
.picture-panel[data-panel-active] .picture-week > span:nth-child(7) { transition-delay: .4s; }

.picture-week > span i {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  color: var(--faint);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.picture-trend {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.picture-trend > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}

.picture-trend span { color: var(--muted); }

.picture-trend b {
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.02em;
}

.picture-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.01em;
}

/* 03 — provenance */
.picture-source {
  display: grid;
  gap: 10px;
}

.picture-source > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.picture-source > div.is-lead {
  border-color: var(--brand-deep);
  background: var(--brand-soft);
}

.picture-source strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.picture-source small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}

.picture-badge {
  flex: none;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.picture-source > div.is-lead .picture-badge {
  background: var(--brand-deep);
}

.picture-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

/* 04 — next step */
.picture-todo {
  display: grid;
  gap: 10px;
}

.picture-todo > div {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.picture-todo em {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.picture-todo > div.is-done {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--line);
}

.picture-todo > div.is-done em {
  border-color: var(--brand-deep);
  background: var(--brand);
  color: var(--brand-ink);
}

.picture-todo > div.is-open {
  border-color: var(--ink);
  box-shadow: inset 3px 0 0 var(--brand-deep);
}

.picture-nudge {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--page);
}

.picture-nudge span {
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.picture-nudge strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.picture-nudge small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .picture-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .picture-item {
    padding: 17px 18px;
  }
}

@media (max-width: 680px) {
  .picture-stage {
    border-radius: 22px;
  }

  .picture-macros > div {
    grid-template-columns: 84px 1fr 40px;
    gap: 9px;
  }

  .picture-week {
    height: 108px;
  }

  .picture-source > div,
  .picture-todo > div {
    padding: 12px 13px;
  }
}

/* The global reduced-motion block already kills every transition. Drop the
   looping atmosphere drift too — that one is an animation, not a transition. */
@media (prefers-reduced-motion: reduce) {
  .picture-atmos::before,
  .picture-atmos::after,
  .picture-item.is-switching .picture-dot {
    animation: none !important;
  }

  .picture-panel > *,
  .picture-item-copy,
  .picture-points li,
  .picture-week > span {
    opacity: 1 !important;
    transform: none !important;
  }

  .picture-panel:not([data-panel-active]) {
    display: none;
  }

  .picture-meter > i {
    width: var(--fill, 0%);
  }
}
