:root {
  --ink: #101010;
  --ink-soft: rgba(16, 16, 16, 0.68);
  --cream: #fff7e8;
  --paper: #fffaf0;
  --white: #ffffff;
  --yellow: #ffe600;
  --lime: #b8ff4f;
  --coral: #ff4f4f;
  --berry: #ff4f8b;
  --violet: #7b4dff;
  --mint: #37d67a;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  --soft-shadow: 0 22px 60px rgba(16, 16, 16, 0.12);
  --black: var(--ink);
  --purple: var(--violet);
  --orange: #ff6b35;
  --pink: var(--berry);
  --muted-dark: var(--ink-soft);
  --shadow-lg: var(--shadow);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 52px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 24px;
  text-decoration: none;
}

.brand-mark img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.nav-download {
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-download:hover,
.nav-download:focus-visible {
  background: var(--yellow);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/images/screen2.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 73% 52%, rgba(255, 230, 0, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.95) 0%, rgba(16, 16, 16, 0.76) 42%, rgba(16, 16, 16, 0.18) 100%),
    linear-gradient(to top, rgba(16, 16, 16, 0.96) 0%, rgba(16, 16, 16, 0.08) 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  max-width: 1240px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 138px clamp(22px, 5vw, 56px) 92px;
}

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

.proverb,
.section-kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 1000;
  letter-spacing: 0;
}

h1 {
  margin-top: 24px;
  max-width: 820px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
}

.hero-subtitle {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
  line-height: 1.48;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(255, 230, 0, 0.26);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.primary-button:hover,
.secondary-button:hover,
.store-button:hover {
  transform: translateY(-3px);
}

.hero-phone {
  position: relative;
  justify-self: center;
  width: min(330px, 62vw);
  transform: rotate(4deg);
}

.hero-phone img {
  width: 100%;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.phone-aura {
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 230, 0, 0.36), transparent 64%),
    radial-gradient(circle at 80% 20%, rgba(255, 79, 79, 0.26), transparent 44%);
  filter: blur(14px);
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 56px);
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--yellow), rgba(255, 255, 255, 0));
  animation: scrollPulse 2s ease-in-out infinite;
}

.belief-section,
.goal-glow-section,
.product-section,
.weeks-section,
.download-section {
  position: relative;
  overflow: hidden;
}

.belief-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 79, 139, 0.12), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(184, 255, 79, 0.16), transparent 28%),
    var(--cream);
  color: var(--ink);
  padding: clamp(86px, 12vw, 150px) clamp(22px, 5vw, 56px);
}

.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.belief-copy h2,
.section-heading h2,
.product-copy h2,
.weeks-copy h2,
.download-copy h2 {
  margin-top: 16px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
}

.belief-copy p,
.product-copy p,
.download-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.belief-section .section-kicker,
.weeks-section .section-kicker {
  color: var(--violet);
}

.plate-card {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 18% 14%, rgba(255, 230, 0, 0.44), transparent 36%),
    radial-gradient(circle at 84% 76%, rgba(55, 214, 122, 0.18), transparent 32%);
  box-shadow: var(--soft-shadow);
}

.plate-ring {
  position: absolute;
  inset: 26px;
  border: 2px dashed rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  animation: slowTurn 22s linear infinite;
}

.plate-ring span {
  position: absolute;
  border-radius: 999px;
  background: var(--white);
  padding: 8px 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(16, 16, 16, 0.08);
}

.plate-ring span:nth-child(1) {
  top: 5%;
  left: 16%;
}

.plate-ring span:nth-child(2) {
  top: 16%;
  right: 1%;
}

.plate-ring span:nth-child(3) {
  right: 10%;
  bottom: 6%;
}

.plate-ring span:nth-child(4) {
  bottom: 12%;
  left: 0;
}

.plate {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(260px, 62vw);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 18px solid var(--white);
  border-radius: 999px;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 79, 79, 0.94) 0 12%, transparent 13%),
    radial-gradient(circle at 38% 62%, rgba(184, 255, 79, 0.92) 0 11%, transparent 12%),
    radial-gradient(circle at 52% 56%, rgba(255, 230, 0, 0.98) 0 16%, transparent 17%),
    #fff7e8;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08), 0 22px 58px rgba(16, 16, 16, 0.16);
  transform: translate(-50%, -50%);
}

.plate strong {
  color: var(--ink);
  font-size: 42px;
  font-weight: 1000;
  line-height: 1;
}

.plate small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 850;
}

.bite {
  position: absolute;
  border-radius: 999px;
  background: var(--cream);
  transform: scale(0);
  animation: biteVanish 4.8s ease-in-out infinite;
}

.bite-one {
  top: 52px;
  right: 46px;
  width: 38px;
  height: 38px;
}

.bite-two {
  top: 78px;
  right: 78px;
  width: 28px;
  height: 28px;
  animation-delay: 0.35s;
}

.bite-three {
  top: 112px;
  right: 54px;
  width: 24px;
  height: 24px;
  animation-delay: 0.7s;
}

.together-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 230, 0, 0.22), transparent 26%),
    radial-gradient(circle at 88% 44%, rgba(255, 79, 79, 0.2), transparent 28%),
    var(--ink);
  padding: clamp(86px, 11vw, 140px) clamp(22px, 5vw, 56px);
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 54px;
  text-align: center;
}

.together-intro {
  max-width: 1080px;
  margin: 0 auto clamp(44px, 7vw, 80px);
  text-align: center;
}

.together-intro h2 {
  margin-top: 16px;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
}

.together-intro p:not(.section-kicker) {
  max-width: 740px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
  line-height: 1.55;
}

.rhythm-carousel {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
}

.rhythm-carousel::before,
.rhythm-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 190px);
  pointer-events: none;
}

.rhythm-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), rgba(16, 16, 16, 0));
}

.rhythm-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), rgba(16, 16, 16, 0));
}

.rhythm-track {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  padding: 8px calc((100vw - min(420px, 76vw)) / 2) 24px;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.rhythm-slide {
  position: relative;
  flex: 0 0 min(420px, 76vw);
  height: min(540px, 96vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.3);
  opacity: 0.46;
  transform: scale(0.92);
  transition: opacity 720ms ease, transform 720ms ease, border-color 720ms ease;
}

.rhythm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.78);
  transform: scale(1.04);
}

.rhythm-slide.is-active {
  border-color: rgba(255, 230, 0, 0.54);
  opacity: 1;
  transform: scale(1);
}

.rhythm-slide.is-active img {
  filter: saturate(1.18) brightness(0.88);
}

.rhythm-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 16, 16, 0.92) 0%, rgba(16, 16, 16, 0.22) 60%, rgba(16, 16, 16, 0.08) 100%),
    radial-gradient(circle at 16% 16%, rgba(255, 230, 0, 0.22), transparent 30%);
}

.rhythm-slide span,
.rhythm-slide strong {
  position: absolute;
  z-index: 1;
}

.rhythm-slide span {
  top: 24px;
  left: 24px;
  border-radius: 999px;
  background: rgba(255, 230, 0, 0.18);
  padding: 9px 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rhythm-slide strong {
  right: 24px;
  bottom: 26px;
  left: 24px;
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
}

.rhythm-slide-payoff {
  background: var(--yellow);
}

.rhythm-slide-payoff img {
  opacity: 0.88;
  filter: saturate(1.12) brightness(0.92);
}

.rhythm-slide-payoff::after {
  background:
    linear-gradient(to top, rgba(255, 230, 0, 0.88) 0%, rgba(255, 230, 0, 0.2) 58%, rgba(255, 230, 0, 0.08) 100%),
    radial-gradient(circle at 82% 76%, rgba(184, 255, 79, 0.36), transparent 30%);
}

.rhythm-slide-payoff span {
  background: rgba(16, 16, 16, 0.1);
  color: var(--ink);
}

.rhythm-slide-payoff strong {
  color: var(--ink);
}

.rhythm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.rhythm-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 360ms ease, background 360ms ease;
}

.rhythm-dots .is-active {
  width: 28px;
  background: var(--yellow);
}

.together-payoff {
  max-width: 1120px;
  margin: clamp(44px, 7vw, 86px) auto 0;
  overflow: visible;
  padding: 0 clamp(18px, 4vw, 44px) 0.42em;
  text-align: center;
}

.together-payoff p {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.35;
}

.together-payoff strong {
  display: block;
  overflow: visible;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  background-clip: text;
  color: transparent;
  font-size: clamp(58px, 12.5vw, 156px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.18;
  text-shadow: 0 22px 70px rgba(255, 230, 0, 0.18);
}

.goal-glow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 255, 79, 0.18), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(255, 230, 0, 0.16), transparent 30%),
    linear-gradient(140deg, #151515 0%, #0d0d0d 70%);
  padding: clamp(88px, 12vw, 150px) clamp(22px, 5vw, 56px);
}

.goal-glow-copy {
  max-width: min(760px, 100%);
  justify-self: end;
}

.goal-glow-copy h2 {
  margin-top: 16px;
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.92;
}

.goal-glow-copy p:not(.section-kicker) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.56;
}

.share-flipper {
  display: grid;
  justify-items: start;
  gap: 14px;

}

.share-flipper span {
  display: block;
}

.share-flipper strong {
  display: inline-flex;
  align-items: left;
  justify-content: left;
  width: min(100%, 720px);
  transform-origin: center bottom;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.2), rgba(184, 255, 79, 0.18));
  padding:  0.11em 0.44em 0.18em;
  color: var(--yellow);
  font-size: clamp(50px, 7.1vw, 94px);
  text-align: center;
  line-height: 0.98;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(255, 230, 0, 0.12);
}

.share-flipper strong.is-flipping {
  animation: personaFlip 420ms cubic-bezier(0.2, 1.38, 0.32, 1);
}

.team-progress-mockup {
  position: relative;
  width: min(620px, 92vw);
  aspect-ratio: 0.78;
  justify-self: start;
  border: 1px solid rgba(123, 77, 255, 0.16);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(247, 244, 255, 0.9) 58%, rgba(237, 233, 255, 0.88)),
    linear-gradient(180deg, #ffffff, #f2efff);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.team-progress-mockup::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 33%, rgba(255, 255, 255, 0) 34%),
    conic-gradient(
      from -28deg,
      rgba(46, 136, 255, 0.28) 0deg 55deg,
      transparent 55deg 68deg,
      rgba(55, 214, 122, 0.28) 68deg 125deg,
      transparent 125deg 143deg,
      rgba(255, 198, 43, 0.3) 143deg 205deg,
      transparent 205deg 222deg,
      rgba(123, 77, 255, 0.28) 222deg 290deg,
      transparent 290deg 306deg,
      rgba(255, 79, 79, 0.25) 306deg 360deg
    );
  filter: blur(12px);
}

.progress-rings {
  position: absolute;
  inset: 8% 10% 21%;
  animation: mockupFloat 7s ease-in-out infinite;
}

.progress-arc {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  transform: rotate(var(--rotation));
}

.progress-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, var(--arc-color) 0deg var(--arc-size), transparent var(--arc-size) 360deg);
  filter: drop-shadow(0 14px 20px var(--arc-glow));
  mask: radial-gradient(circle, transparent 0 56%, #000 57% 66%, transparent 67%);
}

.progress-arc-blue {
  --rotation: -92deg;
  --arc-size: 58deg;
  --arc-color: #2e88ff;
  --arc-glow: rgba(46, 136, 255, 0.26);
}

.progress-arc-green {
  --rotation: -10deg;
  --arc-size: 58deg;
  --arc-color: #3ed06d;
  --arc-glow: rgba(62, 208, 109, 0.26);
}

.progress-arc-yellow {
  --rotation: 66deg;
  --arc-size: 62deg;
  --arc-color: #ffc82e;
  --arc-glow: rgba(255, 200, 46, 0.3);
}

.progress-arc-violet {
  --rotation: 150deg;
  --arc-size: 66deg;
  --arc-color: #7b4dff;
  --arc-glow: rgba(123, 77, 255, 0.3);
}

.progress-arc-coral {
  --rotation: 238deg;
  --arc-size: 58deg;
  --arc-color: #ff7676;
  --arc-glow: rgba(255, 79, 79, 0.26);
}

.member-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 112px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 12px 12px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(61, 51, 115, 0.16);
  backdrop-filter: blur(12px);
  animation: memberFloat 6s ease-in-out infinite;
}

.member-face {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--berry));
  color: var(--white);
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(123, 77, 255, 0.22);
}

.member-bubble strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.member-bubble small {
  color: rgba(16, 16, 16, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-bubble-top {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.member-bubble-right {
  top: 30%;
  right: 4%;
  animation-delay: -1.2s;
}

.member-bubble-bottom-right {
  right: 8%;
  bottom: 17%;
  animation-delay: -2.4s;
}

.member-bubble-bottom-left {
  bottom: 17%;
  left: 8%;
  animation-delay: -3.6s;
}

.member-bubble-left {
  top: 30%;
  left: 4%;
  animation-delay: -4.8s;
}

.member-bubble-right .member-face {
  background: linear-gradient(135deg, #37d67a, #178c4a);
}

.member-bubble-bottom-right .member-face {
  background: linear-gradient(135deg, #ffc82e, #ff9e1f);
}

.member-bubble-bottom-left .member-face {
  background: linear-gradient(135deg, #7b4dff, #b284ff);
}

.member-bubble-left .member-face {
  background: linear-gradient(135deg, #ff7676, #ff4f8b);
}

.mockup-center {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(260px, 42vw);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.mockup-center img {
  width: 132px;
  height: 132px;
  border: 8px solid var(--white);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(61, 51, 115, 0.18);
}

.mockup-center strong {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--violet), #9b5cff);
  background-clip: text;
  color: transparent;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.86;
}

.mockup-center span {
  margin-top: 8px;
  color: rgba(16, 16, 16, 0.72);
  font-size: 18px;
  font-weight: 950;
}

.mockup-center small {
  margin-top: 10px;
  color: #2e88ff;
  font-size: 16px;
  font-weight: 950;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(123, 77, 255, 0.88), rgba(255, 79, 79, 0.74)),
    var(--violet);
  padding: clamp(86px, 12vw, 150px) clamp(22px, 5vw, 56px);
}

.product-copy {
  max-width: 620px;
  justify-self: end;
}

.product-copy p,
.product-copy .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.screen-stack {
  position: relative;
  min-height: 690px;
}

.screen-card {
  position: absolute;
  width: min(330px, 42vw);
}

.screen-card img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.screen-card-one {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.screen-card-two {
  right: 8%;
  bottom: 0;
  transform: rotate(5deg);
}

.weeks-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 247, 232, 1)),
    var(--cream);
  color: var(--ink);
  padding: clamp(86px, 12vw, 150px) clamp(22px, 5vw, 56px);
  text-align: center;
}

.weeks-copy {
  max-width: 820px;
  margin: 0 auto 48px;
}

.week-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.week-ladder article {
  min-height: 260px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 32px;
  background: var(--white);
  padding: 28px;
  text-align: left;
  box-shadow: var(--soft-shadow);
}

.week-ladder article:nth-child(2) {
  transform: translateY(26px);
}

.week-ladder article:nth-child(3) {
  transform: translateY(52px);
}

.week-ladder span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--ink);
  padding: 8px 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.week-ladder strong {
  display: block;
  margin-top: 88px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.98;
}

.download-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 230, 0, 0.2), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(184, 255, 79, 0.14), transparent 26%),
    var(--ink);
  padding: clamp(86px, 12vw, 150px) clamp(22px, 5vw, 56px);
  text-align: center;
}

.download-logo {
  width: 114px;
  height: 114px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.download-copy {
  max-width: 820px;
  margin-top: 24px;
}

.download-copy p {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  padding: 15px 26px;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  font-size: 11px;
  opacity: 0.7;
}

.store-button strong {
  font-size: 17px;
  font-weight: 950;
}

.store-button-apple {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(255, 230, 0, 0.2);
}

.store-button-google {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.download-food span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: floatFood 16s ease-in-out infinite;
}

.download-food span:nth-child(1) {
  top: 18%;
  left: 8%;
}

.download-food span:nth-child(2) {
  top: 22%;
  right: 10%;
  animation-delay: -4s;
}

.download-food span:nth-child(3) {
  bottom: 24%;
  left: 12%;
  animation-delay: -8s;
}

.download-food span:nth-child(4) {
  right: 12%;
  bottom: 18%;
  animation-delay: -12s;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: #080808;
  padding: 28px clamp(22px, 5vw, 56px);
}

.site-footer .brand-mark img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 800;
}

.legal-page {
  background: var(--cream);
  color: var(--ink);
}

.site-nav--legal {
  background: linear-gradient(to bottom, rgba(255, 247, 232, 0.96), rgba(255, 247, 232, 0));
}

.legal-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 230, 0, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 79, 139, 0.14), transparent 24%),
    var(--cream);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  align-items: end;
  gap: clamp(24px, 6vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 160px clamp(24px, 5vw, 56px) 56px;
}

.legal-hero__copy {
  min-width: 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--violet);
}

.legal-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: 0;
}

.legal-hero .eyebrow {
  color: var(--violet);
}

.legal-effective {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 800;
}

.legal-hero img {
  width: min(260px, 36vw);
  border-radius: 44px;
  box-shadow: 0 22px 70px rgba(16, 16, 16, 0.15);
}

.legal-shell {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px) 90px;
}

.legal-card {
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(16, 16, 16, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 10px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--violet);
  font-weight: 800;
}

.legal-alpha {
  list-style-type: lower-alpha;
  margin: 10px 0 18px;
  padding-left: 24px;
}

.legal-alpha li + li {
  margin-top: 6px;
}

.legal-nested {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}

.legal-nested a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(123, 77, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.24), rgba(123, 77, 255, 0.1));
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.legal-nested a:hover,
.legal-nested a:focus-visible {
  border-color: rgba(123, 77, 255, 0.42);
  color: var(--ink);
  transform: translateY(-3px);
}

.legal-nested span {
  font-size: 30px;
}

.legal-nested strong {
  font-size: 18px;
  font-weight: 950;
}

.legal-nested small {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer--legal {
  background: var(--cream);
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.site-footer--legal .footer-logo,
.site-footer--legal .footer-links a {
  color: var(--ink);
}

.site-footer--legal .footer-links a {
  opacity: 0.58;
}

.site-footer--legal .footer-links a:hover,
.site-footer--legal .footer-links a:focus-visible {
  color: var(--violet);
  opacity: 1;
}

.site-footer--legal p {
  color: rgba(16, 16, 16, 0.34);
}

.legal-page--document {
  background: #f7f8fb;
  color: #111827;
}

.legal-main--document {
  min-height: 100vh;
  background: #f7f8fb;
  padding: 132px clamp(20px, 5vw, 56px) 88px;
}

.legal-document-header,
.legal-main--document .legal-shell {
  max-width: 980px;
  margin: 0 auto;
}

.legal-document-header {
  padding-bottom: 34px;
}

.legal-document-header .legal-back {
  margin-bottom: 24px;
}

.legal-kicker {
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-document-header h1 {
  max-width: 760px;
  color: #111827;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.legal-summary {
  max-width: 720px;
  margin-top: 18px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.legal-document-header .legal-effective {
  margin-top: 16px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 700;
}

.legal-document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.legal-document-links a {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-document-links a:hover,
.legal-document-links a:focus-visible,
.legal-document-links a[aria-current="page"] {
  border-color: #111827;
  color: #111827;
}

.legal-main--document .legal-shell {
  padding: 0;
}

.legal-document {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
  padding: clamp(28px, 5vw, 54px);
}

.legal-main--document .legal-content h2 {
  margin: 44px 0 12px;
  border-top: 1px solid #edf0f4;
  padding-top: 28px;
  color: #111827;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-main--document .legal-content h2:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.legal-main--document .legal-content p,
.legal-main--document .legal-content li {
  color: #374151;
  font-size: 15.5px;
  line-height: 1.78;
}

.legal-main--document .legal-content p + p {
  margin-top: 11px;
}

.legal-main--document .legal-content strong {
  color: #111827;
  font-weight: 850;
}

.legal-main--document .legal-content a {
  color: #4338ca;
  font-weight: 750;
}

.legal-main--document .legal-alpha {
  margin: 12px 0 20px;
  padding-left: 28px;
}

.legal-related {
  margin-bottom: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafafa;
  padding: 18px;
}

.legal-related__label {
  margin-bottom: 12px;
  color: #6b7280 !important;
  font-size: 13px !important;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-main--document .legal-nested {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.legal-main--document .legal-nested a {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  padding: 18px;
  color: #111827;
}

.legal-main--document .legal-nested a:hover,
.legal-main--document .legal-nested a:focus-visible {
  border-color: #9ca3af;
  transform: none;
}

.legal-main--document .legal-nested strong {
  font-size: 16px;
}

.legal-main--document .legal-nested small {
  color: #6b7280;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes slowTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes biteVanish {
  0%,
  12% {
    transform: scale(0);
  }
  30%,
  62% {
    transform: scale(1);
  }
  76%,
  100% {
    transform: scale(0);
  }
}

@keyframes floatFood {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes memberFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes personaFlip {
  0% {
    opacity: 0;
    transform: translateY(80%) scale(0.96);
  }
  62% {
    opacity: 1;
    transform: translateY(-10%) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-inner,
  .belief-grid,
  .goal-glow-section,
  .product-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
  }

  .hero-phone {
    width: min(250px, 54vw);
    justify-self: start;
  }

  .product-copy {
    justify-self: start;
  }

  .goal-glow-copy {
    justify-self: start;
  }

  .screen-stack {
    min-height: 610px;
    max-width: 700px;
    width: 100%;
  }

  .screen-card {
    width: min(300px, 46vw);
  }

  .screen-card-two {
    right: 16%;
  }
}

@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
  }

  .brand-mark img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .nav-logo img {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .nav-download {
    padding: 10px 18px;
  }

  .hero-inner {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 84px;
  }

  .hero-shade {
    background:
      linear-gradient(to top, rgba(16, 16, 16, 0.98) 0%, rgba(16, 16, 16, 0.72) 52%, rgba(16, 16, 16, 0.36) 100%),
      radial-gradient(circle at 62% 18%, rgba(255, 230, 0, 0.12), transparent 32%);
  }

  .hero-photo {
    background-position: center top;
  }

  h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .hero-subtitle,
  .belief-copy p,
  .product-copy p,
  .download-copy p {
    font-size: 17px;
  }

  .share-flipper strong {
    width: min(100%, 560px);
    font-size: clamp(40px, 10.8vw, 70px);
  }

  .together-payoff strong {
    font-size: clamp(54px, 15vw, 92px);
    line-height: 1.24;
  }

  .hero-phone {
    display: none;
  }

  .belief-grid {
    gap: 34px;
  }

  .plate-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .plate-ring {
    inset: 18px;
  }

  .plate {
    width: min(225px, 70vw);
    border-width: 14px;
  }

  .rhythm-slide {
    flex-basis: min(330px, 78vw);
    height: min(430px, 102vw);
    border-radius: 28px;
  }

  .rhythm-slide strong {
    font-size: 42px;
  }

  .team-progress-mockup {
    justify-self: center;
    width: min(420px, 92vw);
    border-radius: 34px;
  }

  .member-bubble {
    min-width: 78px;
    border-radius: 18px;
    padding: 8px 8px 9px;
  }

  .member-face {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .member-bubble strong {
    font-size: 18px;
  }

  .member-bubble small {
    font-size: 9px;
  }

  .mockup-center img {
    width: 92px;
    height: 92px;
    border-width: 6px;
  }

  .mockup-center span {
    font-size: 14px;
  }

  .mockup-center small {
    font-size: 13px;
  }

  .week-ladder {
    grid-template-columns: 1fr;
  }

  .week-ladder article,
  .week-ladder article:nth-child(2),
  .week-ladder article:nth-child(3) {
    min-height: 210px;
    transform: none;
  }

  .week-ladder strong {
    margin-top: 58px;
  }

  .product-section {
    padding-bottom: 86px;
  }

  .screen-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .screen-card {
    position: static;
    width: 100%;
  }

  .screen-card-one,
  .screen-card-two {
    transform: none;
  }

  .screen-card img {
    border-radius: 24px;
  }

  .download-food {
    display: none;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    padding-top: 128px;
  }

  .legal-hero img {
    width: 150px;
  }

  .legal-nested {
    grid-template-columns: 1fr;
  }

  .legal-main--document {
    padding-top: 112px;
  }

  .legal-main--document .legal-nested {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    width: 100%;
  }

  .store-button {
    width: min(100%, 310px);
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    min-height: 50px;
  }

  .belief-copy h2,
  .section-heading h2,
  .product-copy h2,
  .weeks-copy h2,
  .download-copy h2 {
    font-size: clamp(38px, 15vw, 58px);
  }

  .screen-stack {
    grid-template-columns: 1fr;
  }

  .goal-glow-copy h2 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .share-flipper strong {
    width: 100%;
    padding-right: 0.26em;
    padding-left: 0.26em;
    font-size: clamp(34px, 10.2vw, 46px);
  }
}
