:root {
  --black: #050708;
  --graphite: #0f1112;
  --surface: #111617;
  --cream: #f7f4ec;
  --cream-2: #eee4d2;
  --sand: #e6d7bc;
  --basil: #6c7f66;
  --coral: #e2553d;
  --muted: #b8b4a9;
  --muted-dark: #555a51;
  --line: rgba(247, 244, 236, 0.15);
  --line-dark: rgba(15, 17, 18, 0.14);
  --page-pad: clamp(28px, 5vw, 112px);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
}

body > * {
  max-width: 100%;
}

.light-wash {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: none;
  pointer-events: none;
  mix-blend-mode: normal;
}

.light-wash::before,
.light-wash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: var(--cream);
  opacity: var(--light-wash, 0);
  transition: opacity 80ms linear;
}

.light-wash::before {
  top: 0;
  height: max(0px, var(--vision-top, 0px));
}

.light-wash::after {
  top: var(--vision-bottom, 100vh);
  bottom: 0;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 0 var(--page-pad);
  background: rgba(5, 7, 8, 0.34);
  backdrop-filter: blur(28px);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 56px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
  background: rgba(5, 7, 8, 0.82);
}

.brand-link img {
  display: block;
  width: 218px;
  height: auto;
  transform: translateZ(0);
  transition: width 220ms ease;
}

.site-header.is-scrolled .brand-link img {
  width: 154px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 34px;
  color: rgba(247, 244, 236, 0.72);
  font-size: 17px;
  font-weight: 650;
  transition:
    gap 220ms ease,
    font-size 220ms ease,
    color 180ms ease;
}

.site-header.is-scrolled .main-nav {
  gap: 24px;
  font-size: 13px;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.06);
  color: var(--cream);
  font-size: 16px;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    font-size 220ms ease;
}

.site-header.is-scrolled .header-cta {
  font-size: 13px;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(247, 244, 236, 0.38);
  background: rgba(247, 244, 236, 0.12);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.06);
  color: var(--cream);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

body.nav-open .menu-toggle {
  border-color: rgba(226, 85, 61, 0.56);
  background: rgba(226, 85, 61, 0.12);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateX(-6px) rotate(90deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  transform: rotate(90deg);
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateX(6px) rotate(90deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.bp-eyebrow {
  text-transform: none;
}

.hero-brand-kicker {
  margin-left: 6px;
  text-transform: none;
}

.hero-brand-kicker strong {
  color: var(--coral);
  font-weight: 760;
}

.hero-brand-kicker span {
  color: rgba(247, 244, 236, 0.72);
  font-weight: 430;
}

.hero-cinematic {
  position: relative;
  min-height: 880px;
  height: min(112svh, 1080px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 40px;
  padding: 110px var(--page-pad) 90px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/images/bitepilot-hero-bowl.png");
  background-size: cover;
  background-position: center right;
  transform: scale(calc(1.02 + var(--page-progress, 0) * 0.035));
  filter: saturate(1.02) contrast(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.94) 0%, rgba(5, 7, 8, 0.78) 34%, rgba(5, 7, 8, 0.12) 78%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.35) 0%, transparent 46%, rgba(5, 7, 8, 0.96) 100%);
}

.hero-copy {
  max-width: 620px;
  padding-top: 36px;
}

.hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(60px, 7.4vw, 116px);
  font-weight: 640;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(247, 244, 236, 0.82);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 390;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
}

.button-primary {
  background: var(--cream);
  color: var(--graphite);
}

.button-ghost {
  border: 1px solid rgba(247, 244, 236, 0.28);
  color: var(--cream);
  backdrop-filter: blur(16px);
}

.bp-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}

.bp-word strong,
.bp-word em {
  font-style: normal;
  font-weight: 760;
}

.bp-word em {
  color: rgba(247, 244, 236, 0.68);
  font-weight: 430;
}

.bp-word-dark em {
  color: rgba(247, 244, 236, 0.62);
}

.bp-word-light strong {
  color: var(--graphite);
}

.bp-word-light em {
  color: rgba(15, 17, 18, 0.56);
}

.hero-product {
  position: relative;
  min-height: 760px;
}

.phone-mock {
  border: 1px solid rgba(224, 228, 218, 0.52);
  color: inherit;
  cursor: pointer;
  position: relative;
  width: 314px;
  min-height: 0;
  padding: 9px;
  border-radius: 32px;
  background:
    linear-gradient(105deg, rgba(246, 247, 240, 0.32), rgba(97, 103, 100, 0.08) 12%, transparent 24%, rgba(255, 255, 255, 0.11) 84%, rgba(255, 255, 255, 0.36)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    #080b0c;
  box-shadow:
    0 0 0 2px rgba(196, 203, 190, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 36px 120px rgba(0, 0, 0, 0.58),
    inset 0 0 0 4px #050708;
  transform-style: preserve-3d;
}

.phone-mock::before {
  content: "";
  position: absolute;
  inset: 18px -16px 18px auto;
  width: 20px;
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, #2d3333 0%, #d8ddd0 26%, #7d867d 56%, #111617 100%);
  transform: translateZ(-16px) rotateY(78deg);
  transform-origin: left center;
  opacity: 0.96;
}

.phone-mock::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: -1;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(34px);
  transform: translate3d(28px, 34px, -34px);
}

.app-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 585 / 1280;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  background: #050708;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(5, 7, 8, 0.72);
}

.hero-phone {
  position: absolute;
  right: 10%;
  top: 18px;
  width: clamp(270px, 19.7vw, 326px);
  transform: rotateY(-17deg) rotateZ(2deg) translateY(calc(var(--page-progress, 0) * -24px));
  animation: phone-float 7s ease-in-out infinite alternate;
}

.hero-phone .app-screenshot {
  aspect-ratio: 585 / 1280;
}


@keyframes phone-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -14px;
  }
}

.phone-bar {
  width: 92px;
  height: 5px;
  margin: 3px auto 24px;
  border-radius: 5px;
  background: rgba(247, 244, 236, 0.28);
}

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

.app-top img {
  width: 136px;
}

.app-top span,
.today-panel span,
.feature-panel span,
.mini-label {
  color: var(--basil);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.today-panel {
  padding: 16px;
  border: 1px solid rgba(247, 244, 236, 0.13);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.05);
}

.today-panel strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.08;
}

.today-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.macro-row {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.macro-row span {
  position: relative;
  display: block;
  padding-top: 9px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 720;
}

.macro-row span::before,
.macro-row span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 4px;
}

.macro-row span::before {
  width: 100%;
  background: rgba(247, 244, 236, 0.14);
}

.macro-row span::after {
  width: var(--value);
  background: var(--basil);
}

.floating-plan {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: 370px;
  padding: 18px;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 8px;
  background: rgba(13, 17, 18, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.floating-plan span {
  color: var(--muted);
  font-size: 13px;
}

.floating-plan strong {
  float: right;
  font-size: 18px;
}

.week-grid {
  clear: both;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.week-grid i {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  color: var(--sand);
  font-style: normal;
  font-weight: 780;
}

.week-grid i:first-child {
  background: var(--basil);
  color: var(--cream);
}

.autopilot-film,
.management-cycle-section,
.device-cinema,
.webapp-cinema,
.problem-shift,
.control-room,
.journey-sequence {
  padding-inline: var(--page-pad);
}

.autopilot-film,
.management-cycle-section,
.device-cinema,
.webapp-cinema,
.problem-shift,
.control-room,
.journey-sequence {
  padding: 124px var(--page-pad);
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 85, 61, 0.12), transparent 30%),
    var(--black);
}

.big-statement {
  max-width: 960px;
  margin-bottom: 70px;
}

.big-statement h2,
.device-copy h2,
.editorial-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 590;
  line-height: 1.06;
  letter-spacing: 0;
}

.big-statement p:not(.eyebrow),
.device-copy p,
.editorial-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 390;
  line-height: 1.65;
}

.film-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.film-steps article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 360px;
  padding: 0 26px 0 0;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.film-steps article:last-child {
  border-right: 0;
}

.film-steps span {
  color: var(--coral);
  font-weight: 760;
}

.film-steps h3 {
  margin: 78px 0 22px;
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 570;
  line-height: 1.12;
}

.film-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.management-cycle-section {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding-top: clamp(108px, 11vw, 168px);
  background:
    radial-gradient(circle at 50% 35%, rgba(247, 244, 236, 0.09), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(226, 85, 61, 0.22), transparent 32%),
    radial-gradient(circle at 14% 88%, rgba(108, 127, 102, 0.24), transparent 34%),
    linear-gradient(180deg, #050708 0%, #070a0b 52%, #050708 100%);
}

.management-cycle-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-pad);
  right: var(--page-pad);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.22), transparent);
}

.management-cycle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.045), transparent),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(247, 244, 236, 0.032) 119px 120px);
  opacity: 0.34;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.management-cycle-section .big-statement {
  opacity: 1;
  transform: none;
}

.management-cycle-section .section-label .section-label,
.device-cinema .section-label {
  color: var(--muted);
}

.cycle-experience {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 100%;
  margin-top: 34px;
  overflow: hidden;
}

.cycle-visual {
  position: relative;
  width: min(840px, calc(100vw - (var(--page-pad) * 2)));
  max-width: 100%;
  aspect-ratio: 1;
  isolation: isolate;
  transform: none;
}

.cycle-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(247, 244, 236, 0.24);
  border-radius: 50%;
  background:
    conic-gradient(from -92deg, rgba(226, 85, 61, 0.92), rgba(226, 85, 61, 0.22) 18%, rgba(108, 127, 102, 0.58) 43%, rgba(247, 244, 236, 0.18) 68%, rgba(226, 85, 61, 0.9));
  opacity: 1;
  mask: radial-gradient(circle, transparent 62%, #000 63%);
  filter:
    drop-shadow(0 0 34px rgba(226, 85, 61, 0.24))
    drop-shadow(0 0 90px rgba(247, 244, 236, 0.08));
  animation: slow-orbit 7s linear infinite;
}

.cycle-orbit.inner {
  inset: 21%;
  background:
    conic-gradient(from -92deg, rgba(226, 85, 61, 0.54), rgba(226, 85, 61, 0.12) 18%, rgba(108, 127, 102, 0.36) 43%, rgba(247, 244, 236, 0.1) 68%, rgba(226, 85, 61, 0.48));
  opacity: 0.5;
  animation-duration: 10s;
  animation-direction: reverse;
}

@keyframes slow-orbit {
  to {
    rotate: 360deg;
  }
}

.cycle-center {
  position: absolute;
  inset: 34%;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(247, 244, 236, 0.28);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 85, 61, 0.24), transparent 52%),
    radial-gradient(circle at 50% 100%, rgba(247, 244, 236, 0.12), transparent 54%),
    rgba(13, 17, 18, 0.86);
  box-shadow:
    0 36px 130px rgba(0, 0, 0, 0.42),
    0 0 86px rgba(226, 85, 61, 0.12),
    inset 0 1px 0 rgba(247, 244, 236, 0.18);
  backdrop-filter: blur(18px);
  opacity: 1;
  transform: none;
}

.cycle-center img {
  width: min(190px, 74%);
  height: auto;
  display: block;
}

.cycle-node > span,
.cycle-arguments article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.cycle-node {
  position: absolute;
  z-index: 4;
  width: 188px;
  height: 188px;
  min-height: 188px;
  display: block;
  padding: 24px;
  border: 1px solid rgba(247, 244, 236, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 32%, rgba(247, 244, 236, 0.2), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(108, 127, 102, 0.11), transparent 46%),
    rgba(18, 23, 24, 0.88);
  color: var(--cream);
  text-align: center;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(247, 244, 236, 0.12);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
  opacity: 1;
}

.cycle-node:hover,
.cycle-node:focus-visible {
  border-color: rgba(226, 85, 61, 0.72);
  background:
    radial-gradient(circle at 62% 32%, rgba(226, 85, 61, 0.22), transparent 44%),
    rgba(20, 22, 22, 0.92);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.36),
    0 0 44px rgba(226, 85, 61, 0.16);
  transform: translate3d(0, -8px, 0) scale(1.03);
}

.cycle-node strong {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  display: block;
  max-width: 148px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: normal;
  hyphens: manual;
  transform: translateY(-50%);
}

.cycle-node > span {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 42px);
  display: block;
  text-align: center;
}

.node-goal {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.node-plan {
  right: 0;
  top: 27%;
}

.node-decision {
  right: 10%;
  bottom: 1%;
}

.node-action {
  left: 10%;
  bottom: 1%;
}

.node-control {
  left: 0;
  top: 27%;
}

.node-goal:hover,
.node-goal:focus-visible {
  transform: translate(-50%, -8px) scale(1.03);
}

.cycle-arguments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 84px;
}

.cycle-arguments article {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  padding: 38px;
  border: 1px solid rgba(15, 17, 18, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 85, 61, 0.16), transparent 40%),
    linear-gradient(180deg, #f7f4ec 0%, #eee4d2 100%);
  color: var(--graphite);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
}

.cycle-arguments article:nth-child(2) {
  background:
    radial-gradient(circle at 0% 0%, rgba(108, 127, 102, 0.18), transparent 38%),
    linear-gradient(180deg, #f7f4ec 0%, #ebe0cd 100%);
}

.cycle-arguments h3 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 590;
  line-height: 1.08;
}

.cycle-dialog {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 7, 8, 0.54);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease;
}

.cycle-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cycle-dialog-card {
  position: relative;
  width: min(560px, 100%);
  min-height: 0;
  padding: 34px 36px 38px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x, 72%) var(--spot-y, 18%), rgba(226, 85, 61, 0.11), transparent 36%),
    rgba(10, 13, 14, 0.94);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
  transform: translateY(10px) scale(0.985);
  transition: transform 220ms ease;
}

.cycle-dialog.is-open .cycle-dialog-card {
  transform: translateY(0) scale(1);
}

.cycle-dialog-card > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
}

.cycle-dialog-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 590;
  line-height: 1;
}

.cycle-dialog-card > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 620;
  line-height: 1.18;
}

.cycle-dialog-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.cycle-dialog-card p strong {
  display: inline;
  color: var(--cream);
  font-weight: 780;
}

.cycle-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  opacity: 0.76;
  transition: color 180ms ease, opacity 180ms ease;
}

.cycle-dialog-close:hover,
.cycle-dialog-close:focus-visible {
  color: var(--coral);
  opacity: 1;
}

.problem-shift {
  display: grid;
  grid-template-columns: 1fr;
  gap: 68px;
  align-items: start;
}

.shift-copy {
  max-width: 980px;
  position: relative;
  top: auto;
}

.shift-copy h2 {
  max-width: 1060px;
  font-size: clamp(36px, 4.15vw, 58px);
  font-weight: 570;
  line-height: 1.12;
}

.shift-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.shift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.shift-grid article {
  position: relative;
  min-height: 610px;
  padding: 44px 44px 310px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.055), rgba(247, 244, 236, 0.02)),
    #0a0d0e;
}

.shift-grid .after {
  border-color: rgba(226, 85, 61, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 85, 61, 0.22), transparent 38%),
    radial-gradient(circle at 18% 100%, rgba(108, 127, 102, 0.22), transparent 36%),
    rgba(247, 244, 236, 0.06);
}

.shift-grid span,
.control-tabs button,
.journey-track span,
.roadmap-rail span,
.membership-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.shift-grid h3 {
  max-width: 610px;
  margin: 62px 0 22px;
  font-size: clamp(29px, 2.75vw, 40px);
  font-weight: 570;
  line-height: 1.1;
}

.shift-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.comparison-visual {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 38px;
}

.before-visual {
  display: grid;
  gap: 12px;
}

.before-visual span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  color: rgba(247, 244, 236, 0.62);
  background: rgba(247, 244, 236, 0.035);
  text-transform: none;
}

.after-visual {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 10px;
  background: rgba(5, 7, 8, 0.54);
  backdrop-filter: blur(18px);
}

.after-visual img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
}

.after-visual strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.after-visual span {
  color: var(--muted);
  text-transform: none;
}

.device-cinema {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(520px, 1.35fr);
  gap: 52px;
  align-items: start;
  min-height: 900px;
}

.food-cinema {
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(620px, 1.3fr);
  gap: 64px;
  align-items: center;
  padding: 124px var(--page-pad);
  background:
    radial-gradient(circle at 8% 100%, rgba(108, 127, 102, 0.22), transparent 32%),
    radial-gradient(circle at 95% 4%, rgba(226, 85, 61, 0.16), transparent 28%),
    var(--black);
}

.food-cinema-copy {
  position: sticky;
  top: 118px;
}

.food-cinema-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 4.9vw, 72px);
  font-weight: 590;
  line-height: 1.02;
}

.food-cinema-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.food-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  grid-auto-rows: 172px;
  gap: 16px;
}

.food-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.food-wall img:hover {
  filter: saturate(1.15) contrast(1.06);
  transform: translateY(-10px) scale(1.035);
}

.system-head {
  max-width: 980px;
  margin-bottom: 80px;
}

.system-head h2 {
  max-width: 1060px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.2vw, 78px);
  font-weight: 590;
  line-height: 1.02;
}

.system-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.64;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(247, 244, 236, 0.18);
  border-bottom: 1px solid rgba(247, 244, 236, 0.18);
}

.system-flow article {
  position: relative;
  min-height: 360px;
  padding: 34px 26px 30px;
  border-right: 1px solid rgba(247, 244, 236, 0.14);
  overflow: hidden;
}

.system-flow article:last-child {
  border-right: 0;
}

.system-flow article::before {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), rgba(226, 85, 61, 0));
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 260ms ease;
}

.system-flow article:hover::before {
  transform: scaleX(1);
}

.system-flow span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
}

.system-flow h3 {
  margin: 116px 0 18px;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 590;
  line-height: 1.06;
}

.system-flow p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.control-layout {
  display: grid;
  grid-template-columns: 220px minmax(460px, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.control-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 18px;
}

.control-tabs button {
  position: relative;
  min-height: 50px;
  padding: 0 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(247, 244, 236, 0.13);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    padding-left 180ms ease,
    border-color 180ms ease;
}

.control-tabs button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: translateY(-50%);
  transition: width 180ms ease;
}

.control-tabs button:hover,
.control-tabs button.active {
  padding-left: 18px;
  border-bottom-color: rgba(226, 85, 61, 0.46);
  color: var(--cream);
}

.control-tabs button:hover::before,
.control-tabs button.active::before {
  width: 10px;
}

.control-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 42%), rgba(226, 85, 61, 0.22), transparent 23%),
    radial-gradient(circle at 50% 36%, rgba(108, 127, 102, 0.28), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(226, 85, 61, 0.12), transparent 28%),
    #080b0c;
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(247, 244, 236, 0.12);
  transform-style: preserve-3d;
}

.control-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(247, 244, 236, 0.09);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
}

.cockpit-grid {
  position: absolute;
  inset: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  transform: rotateX(10deg) rotateY(-9deg);
}

.cockpit-tile {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 35%), rgba(247, 244, 236, 0.08), transparent 46%),
    rgba(247, 244, 236, 0.055);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.cockpit-tile:hover {
  border-color: rgba(247, 244, 236, 0.3);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(-7px) translateZ(24px);
}

.cockpit-tile span {
  color: var(--basil);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.cockpit-tile strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 27px;
  font-weight: 620;
}

.cockpit-tile p {
  color: var(--muted);
  line-height: 1.45;
}

.control-visual[data-active-panel="target"] .tile-target,
.control-visual[data-active-panel="week"] .tile-week,
.control-visual[data-active-panel="shopping"] .tile-shopping,
.control-visual[data-active-panel="today"] .tile-today,
.control-visual[data-active-panel="adapt"] .cockpit-tile {
  border-color: rgba(226, 85, 61, 0.5);
  background: rgba(226, 85, 61, 0.12);
  transform: translateY(-10px) translateZ(28px);
}

.control-copy {
  position: relative;
  min-height: 560px;
  padding: 34px 0 0;
}

.control-copy article {
  display: none;
}

.control-copy article.active {
  display: block;
}

.control-copy h3 {
  font-size: clamp(30px, 3.45vw, 48px);
  font-weight: 620;
  line-height: 1.06;
}

.control-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.journey-sequence h2,
.roadmap-copy h2 {
  max-width: 980px;
  margin-bottom: 70px;
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 590;
  line-height: 1.06;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 34px 0 12px;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.2), transparent);
}

.journey-track article {
  position: relative;
  min-height: 330px;
  padding: 92px 26px 28px 0;
  border-top: 0;
  background: transparent;
}

.journey-track article::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.journey-track article:hover::before {
  border-color: rgba(226, 85, 61, 0.72);
  background: rgba(226, 85, 61, 0.12);
  transform: translateY(-4px);
}

.journey-track span {
  position: absolute;
  top: 60px;
  left: 15px;
  z-index: 1;
  transition: transform 220ms ease;
}

.journey-track h3 {
  margin: 0 0 16px;
  font-size: 31px;
  font-weight: 590;
  transition: transform 220ms ease;
}

.journey-track article:hover h3 {
  transform: translateY(-6px);
}

.journey-track article:hover span {
  transform: translateY(-4px);
}

.journey-track p {
  color: var(--muted);
  line-height: 1.58;
}

.device-copy {
  position: sticky;
  top: 126px;
  align-self: start;
  padding-top: 42px;
}

.device-stage {
  position: relative;
  min-height: 760px;
  perspective: 1400px;
}

.native-app-screen {
  display: grid;
  gap: 12px;
}

.native-week,
.native-tabs,
.native-actions,
.native-shopping,
.native-progress-actions,
.native-bottom-nav {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.native-week span,
.native-week b,
.native-tabs span,
.native-actions span,
.native-shopping span,
.native-progress-actions span,
.native-bottom-nav span {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.native-week b:nth-child(2),
.native-tabs span:first-child {
  background: var(--basil);
  color: var(--cream);
}

.native-week b {
  min-width: 52px;
  line-height: 1.08;
}

.native-card {
  padding: 16px;
  border: 1px solid rgba(247, 244, 236, 0.13);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.05);
}

.native-card span {
  color: var(--basil);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.native-card strong {
  display: block;
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.08;
}

.native-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.meal-native {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.meal-native img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.native-actions span:nth-child(2) {
  background: var(--coral);
  color: var(--cream);
}

.native-progress-actions span {
  min-width: 42px;
  background: rgba(247, 244, 236, 0.035);
}

.native-progress-actions span:first-child {
  background: var(--basil);
  color: var(--cream);
}

.native-bottom-nav {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(247, 244, 236, 0.13);
}

.native-bottom-nav span {
  flex: 1;
  min-height: 34px;
  padding: 0 6px;
  color: var(--muted);
  font-size: 10px;
}

.native-bottom-nav span:first-child {
  background: rgba(108, 127, 102, 0.24);
  color: var(--cream);
}

.native-shopping {
  flex-wrap: wrap;
}

.hero-native-screen {
  gap: 14px;
}

.hero-native-screen .native-week {
  margin-bottom: 4px;
}

.hero-course-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 85, 61, 0.2), transparent 42%),
    rgba(247, 244, 236, 0.055);
}

.hero-course-card strong {
  font-size: 25px;
}

.hero-meal-card img {
  width: 82px;
  height: 82px;
}

.hero-evening-card {
  background: rgba(108, 127, 102, 0.14);
}

.phone-left,
.phone-center,
.phone-right {
  position: absolute;
}

.phone-left {
  left: 2%;
  top: 58px;
  transform: rotateY(20deg) rotateZ(-5deg);
  opacity: 0.82;
}

.phone-center {
  left: 28%;
  top: -24px;
  z-index: 2;
  transform: translateY(calc(var(--page-progress, 0) * -14px));
}

.phone-right {
  right: 4%;
  top: 44px;
  transform: rotateY(-20deg) rotateZ(5deg);
  opacity: 0.82;
}

.phone-detail {
  position: absolute;
  left: 48%;
  top: 250px;
  z-index: 3;
  width: 300px;
  transform: translateX(-50%) rotateY(-8deg) rotateZ(2deg);
}

.real-device-stage::before {
  content: "";
  position: absolute;
  inset: 12% -5% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 42% 32%, rgba(226, 85, 61, 0.2), transparent 34%),
    radial-gradient(circle at 60% 52%, rgba(108, 127, 102, 0.18), transparent 38%),
    linear-gradient(120deg, transparent 10%, rgba(247, 244, 236, 0.08), transparent 58%);
  filter: blur(22px);
  opacity: 0.92;
}

.real-device-stage .phone-mock {
  transition:
    transform 260ms ease,
    opacity 260ms ease,
    filter 260ms ease;
}

.real-device-stage .phone-mock:hover {
  opacity: 1;
  filter: saturate(1.08);
}

.real-device-stage .phone-mock.is-active {
  z-index: 6;
  opacity: 1;
  filter: saturate(1.1);
  animation: device-pop 360ms cubic-bezier(0.2, 0.82, 0.18, 1);
}

@keyframes device-pop {
  from {
    opacity: 0.78;
    filter: saturate(0.96) blur(0.2px);
  }
}

.phone-left:hover {
  transform: rotateY(13deg) rotateZ(-3deg) translateY(-12px);
}

.phone-left.is-active {
  transform: translateX(34%) rotateY(4deg) rotateZ(-1deg) translateY(-24px);
}

.phone-center:hover {
  transform: translateY(-18px) scale(1.025);
}

.phone-center.is-active {
  transform: translateY(-26px);
}

.phone-right:hover {
  transform: rotateY(-13deg) rotateZ(3deg) translateY(-12px);
}

.phone-right.is-active {
  transform: translateX(-34%) rotateY(-4deg) rotateZ(1deg) translateY(-24px);
}

.phone-detail:hover {
  transform: translateX(-50%) rotateY(-3deg) rotateZ(1deg) translateY(-14px);
}

.rings {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.rings span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 8px solid var(--basil);
  border-radius: 50%;
  color: var(--cream);
  font-weight: 760;
}

.shopping-preview,
.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.shopping-preview span,
.ingredient-list span {
  padding: 9px 10px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 720;
}

.fake-action {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: var(--cream);
  font-weight: 760;
}

.vision-editorial {
  position: relative;
  margin-top: -1px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--cream);
  color: var(--graphite);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.intelligence-grid article {
  min-height: 330px;
  padding: 26px;
  border-top: 2px solid rgba(226, 85, 61, 0.7);
  background: rgba(247, 244, 236, 0.035);
}

.intelligence-grid h3 {
  margin: 74px 0 16px;
  font-size: 31px;
  font-weight: 620;
  line-height: 1.05;
}

.intelligence-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.editorial-image {
  position: relative;
  min-height: 760px;
  background-image: url("./assets/images/bitepilot-vision-mealprep-only.png");
  background-size: cover;
  background-position: 63% center;
}

.editorial-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 112px var(--page-pad) 112px 78px;
}

.editorial-copy p {
  color: var(--muted-dark);
}

.editorial-copy blockquote {
  max-width: 680px;
  margin: 42px 0 0;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--coral);
  color: rgba(15, 17, 18, 0.82);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 450;
  line-height: 1.54;
}

.web-dashboard {
  display: grid;
  grid-template-columns: 190px minmax(420px, 1fr) 300px;
  gap: 12px;
  min-height: 620px;
  padding: 12px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.07), transparent),
    #080b0c;
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.48);
}

.web-dashboard aside,
.web-main,
.web-detail,
.web-dashboard article {
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
}

.web-dashboard aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.web-dashboard aside img {
  width: 52px;
  margin-bottom: 20px;
}

.web-dashboard aside a {
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 720;
}

.web-dashboard aside a.active {
  background: rgba(108, 127, 102, 0.28);
  color: var(--cream);
}

.web-main,
.web-detail,
.web-dashboard article {
  padding: 18px;
}

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

.web-top h3 {
  margin: 8px 0 0;
  font-size: 34px;
  font-weight: 620;
}

.web-top button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: var(--cream);
  font-weight: 760;
}

.web-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.web-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.web-week article {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(247, 244, 236, 0.1);
  background: rgba(247, 244, 236, 0.035);
}

.web-week article.active {
  border-color: rgba(108, 127, 102, 0.58);
  background: rgba(108, 127, 102, 0.22);
}

.web-week span,
.web-week small,
.web-pill {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.web-week strong {
  display: block;
  margin: 10px 0 2px;
  font-size: 20px;
}

.web-day-plan {
  padding: 18px;
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
}

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

.web-section-head h4 {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 620;
}

.web-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(108, 127, 102, 0.22);
  color: var(--cream);
}

.web-meals {
  display: grid;
  gap: 10px;
}

.web-meals article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(247, 244, 236, 0.1);
  background: rgba(5, 7, 8, 0.24);
}

.web-meals article.selected {
  border-color: rgba(226, 85, 61, 0.44);
}

.web-meals img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.web-meals h5 {
  margin: 4px 0;
  font-size: 20px;
}

.web-meals p {
  margin: 0;
  color: var(--muted);
}

.web-meals button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.05);
  color: var(--cream);
  font-weight: 760;
}

.web-meals article.selected button {
  border-color: var(--coral);
  background: var(--coral);
}

.web-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.web-summary article {
  padding: 16px;
  background: rgba(247, 244, 236, 0.045);
}

.web-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.web-dashboard article h4 {
  margin: 10px 0 22px;
  font-size: 28px;
  font-weight: 620;
  line-height: 1.08;
}

.wide-card {
  grid-column: 1 / -1;
}

.timeline {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.85fr;
  gap: 8px;
}

.timeline span {
  height: 12px;
  border-radius: 12px;
  background: var(--basil);
}

.timeline span:nth-child(2) {
  background: var(--coral);
}

.macro-big b {
  display: block;
  font-size: 42px;
  font-weight: 620;
}

.macro-big span,
.web-grid p,
.web-detail p,
.web-shopping-card p {
  color: var(--muted);
  line-height: 1.52;
}

.web-recipe-card,
.web-shopping-card {
  padding: 18px;
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
}

.web-recipe-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  margin: 12px 0 16px;
  border-radius: 8px;
}

.web-recipe-card h3 {
  margin-bottom: 10px;
}

.web-shopping-card {
  margin-top: 12px;
}

.proof-section {
  padding: 132px var(--page-pad);
  background:
    radial-gradient(circle at 78% 10%, rgba(226, 85, 61, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(247, 244, 236, 0.04), transparent 22%),
    var(--black);
  color: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid blockquote {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  margin: 0;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.proof-grid blockquote:first-child {
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 85, 61, 0.28), transparent 38%),
    rgba(247, 244, 236, 0.04);
  color: var(--cream);
}

.proof-grid blockquote:last-child {
  border-right: 0;
}

.proof-grid p {
  font-size: clamp(23px, 2.35vw, 34px);
  font-weight: 590;
  line-height: 1.14;
}

.proof-grid blockquote:first-child p {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
}

.proof-grid cite {
  color: var(--muted-dark);
  font-style: normal;
  font-weight: 720;
}

.proof-grid blockquote:first-child cite {
  color: rgba(247, 244, 236, 0.64);
}

.roadmap-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(600px, 1.44fr);
  gap: 76px;
  overflow: hidden;
}

.roadmap-section::before {
  display: none;
}

.roadmap-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.roadmap-rail {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.roadmap-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(260px, 0.9fr) 1fr;
  gap: 28px;
  align-items: baseline;
  min-height: auto;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.roadmap-rail article:nth-child(2),
.roadmap-rail article:nth-child(4) {
  transform: none;
}

.roadmap-rail h3 {
  margin: 0;
  font-size: clamp(26px, 2.35vw, 34px);
  font-weight: 590;
  line-height: 1.1;
}

.roadmap-rail p {
  color: var(--muted);
  line-height: 1.6;
}

.device-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px var(--page-pad);
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  background: var(--black);
}

.site-footer img {
  width: 150px;
}

.site-footer div {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 650;
}

.site-footer p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-main {
  min-height: 100svh;
  padding: 138px max(24px, calc((100vw - 900px) / 2)) 80px;
  background:
    radial-gradient(circle at 88% 0%, rgba(226, 85, 61, 0.14), transparent 30%),
    var(--black);
}

.legal-main h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 620;
}

.legal-main h2 {
  margin-top: 46px;
  font-size: 28px;
  font-weight: 620;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-back {
  display: inline-flex;
  margin: 0 0 30px;
  color: var(--cream);
  font-weight: 720;
}

.legal-back::before {
  content: "\2190";
  margin-right: 10px;
  color: var(--coral);
}

.legal-note {
  padding: 18px;
  border: 1px solid rgba(226, 85, 61, 0.38);
  border-radius: 8px;
  background: rgba(226, 85, 61, 0.12);
}

.auth-main {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: start;
  padding: 160px var(--page-pad) 96px;
  background:
    radial-gradient(circle at 88% 0%, rgba(226, 85, 61, 0.16), transparent 34%),
    radial-gradient(circle at 14% 100%, rgba(108, 127, 102, 0.16), transparent 28%),
    var(--black);
}

.auth-hero {
  position: sticky;
  top: 116px;
}

.auth-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 610;
  line-height: 0.98;
}

.auth-hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.auth-panel,
.onboarding-grid article {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.26);
}

.auth-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.auth-panel input,
.input-grid input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(247, 244, 236, 0.06);
  color: var(--cream);
  font: inherit;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
}

.auth-panel p a {
  color: var(--cream);
  font-weight: 760;
}

.google-button,
.choice-row button {
  min-height: 48px;
  border: 1px solid rgba(247, 244, 236, 0.15);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.06);
  color: var(--cream);
  font-weight: 760;
  cursor: pointer;
}

.signup-flow {
  grid-template-columns: minmax(300px, 0.58fr) minmax(680px, 1.42fr);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.onboarding-grid article {
  min-height: 260px;
}

.onboarding-grid article.wide {
  grid-column: 1 / -1;
}

.onboarding-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
}

.onboarding-grid h2 {
  margin: 20px 0 8px;
  font-size: 34px;
}

.input-grid,
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row .button {
  min-width: 160px;
}

.signup-app-flow {
  background:
    radial-gradient(circle at 86% 0%, rgba(226, 85, 61, 0.14), transparent 28%),
    radial-gradient(circle at 12% 30%, rgba(108, 127, 102, 0.16), transparent 24%),
    var(--black);
}

.signup-intro {
  min-height: min(100svh, 980px);
  display: grid;
  grid-template-columns: minmax(480px, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
  padding: 140px var(--page-pad) 90px;
}

.signup-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  transform: rotateX(8deg) rotateY(-8deg);
  transform-style: preserve-3d;
}

.signup-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.signup-mosaic img:nth-child(2),
.signup-mosaic img:nth-child(5),
.signup-mosaic img:nth-child(8) {
  transform: translateY(34px);
}

.signup-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(56px, 7.6vw, 112px);
  line-height: 0.94;
  font-weight: 610;
}

.signup-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
}

.signup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.signup-step {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(620px, 1.54fr);
  gap: 56px;
  align-items: start;
  padding: 116px var(--page-pad);
  border-top: 1px solid rgba(247, 244, 236, 0.09);
}

.signup-step.compact {
  align-items: center;
}

.step-aside {
  position: sticky;
  top: 108px;
}

.step-aside > span,
.signup-panel-grid > article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
}

.step-aside h2 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.02;
  font-weight: 590;
}

.step-aside p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.signup-auth-panel {
  align-self: center;
}

.taste-web-grid,
.signup-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.taste-web-grid article,
.signup-panel-grid article {
  padding: 22px;
  border: 1px solid rgba(247, 244, 236, 0.13);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
}

.taste-web-grid h3,
.signup-panel-grid h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.taste-cards-web {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.taste-cards-web button,
.goal-grid-web button,
.option-stack-web button {
  border: 1px solid rgba(247, 244, 236, 0.13);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.045);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.taste-cards-web button:hover,
.goal-grid-web button:hover,
.option-stack-web button:hover {
  border-color: rgba(226, 85, 61, 0.54);
  background: rgba(226, 85, 61, 0.08);
  transform: translateY(-5px);
}

.taste-cards-web img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.taste-cards-web span {
  display: block;
  padding: 12px;
  font-weight: 820;
}

.signup-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.signup-image-strip img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 8px;
}

.signup-panel-grid .wide {
  grid-column: 1 / -1;
}

.option-stack-web {
  display: grid;
  gap: 10px;
}

.option-stack-web button {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.option-stack-web span,
.goal-grid-web span,
.signup-panel-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.goal-grid-web {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.goal-grid-web button {
  min-height: 110px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.input-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.consent-web {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.build-orbit {
  position: relative;
  width: min(420px, 64vw);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(226, 85, 61, 0.22), transparent 38%),
    rgba(247, 244, 236, 0.035);
  animation: slow-spin 14s linear infinite;
}

.build-orbit span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--coral);
}

.build-orbit span:nth-child(1) {
  top: 12%;
  left: 50%;
}

.build-orbit span:nth-child(2) {
  right: 13%;
  bottom: 28%;
  background: var(--basil);
}

.build-orbit span:nth-child(3) {
  left: 18%;
  bottom: 20%;
  background: var(--sand);
}

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

.signup-subscription {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 18%, rgba(226, 85, 61, 0.2), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(108, 127, 102, 0.2), transparent 34%),
    var(--black);
}

.download-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(420px, 0.92fr);
  gap: 68px;
  align-items: center;
  padding: 118px var(--page-pad) 72px;
}

.download-mosaic {
  min-height: min(680px, 72svh);
}

.download-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 620;
  line-height: 0.94;
}

.download-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.store-button {
  min-width: 220px;
  margin-top: 28px;
}

@media (max-width: 1060px) {
  .main-nav {
    position: fixed;
    top: 72px;
    right: var(--page-pad);
    width: min(330px, calc(100vw - 36px));
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(247, 244, 236, 0.12);
    border-radius: 14px;
    background: rgba(9, 12, 13, 0.94);
    color: rgba(247, 244, 236, 0.84);
    box-shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(247, 244, 236, 0.07);
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu-toggle {
    display: grid;
  }

  .hero-cinematic,
  .device-cinema,
  .cycle-experience,
  .vision-editorial,
  .web-dashboard,
  .problem-shift,
  .control-layout,
  .roadmap-section,
  .food-cinema,
  .signup-intro,
  .signup-step,
  .signup-flow,
  .auth-main {
    grid-template-columns: 1fr;
  }

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

  .hero-phone {
    right: 50%;
    transform: translateX(50%) rotateZ(2deg);
  }

  .floating-plan {
    right: 50%;
    width: min(370px, 92vw);
    transform: translateX(50%);
  }

  .device-copy {
    position: relative;
    top: auto;
  }

  .device-stage {
    min-height: 1120px;
  }

  .phone-left,
  .phone-center,
  .phone-right,
  .phone-detail {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .phone-left {
    top: 0;
  }

  .phone-center {
    top: 360px;
  }

  .phone-right {
    top: 720px;
  }

  .phone-detail {
    top: 1080px;
  }

  .real-device-stage {
    min-height: 1460px;
  }

  .editorial-image {
    min-height: 460px;
  }

  .editorial-copy {
    padding: 76px max(24px, calc((100vw - 760px) / 2));
  }

  .film-steps article {
    grid-template-columns: 60px 1fr;
  }

  .film-steps p {
    grid-column: 2;
  }

  .film-steps,
  .roadmap-rail {
    grid-template-columns: 1fr;
  }

  .cycle-visual {
    width: min(680px, 92vw);
    margin: 0 auto;
  }

  .film-steps article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .roadmap-rail article:nth-child(2),
  .roadmap-rail article:nth-child(4) {
    transform: none;
  }

  .proof-grid,
  .price-grid,
  .intelligence-grid,
  .membership-grid,
  .taste-web-grid,
  .signup-panel-grid,
  .signup-subscription {
    grid-template-columns: 1fr 1fr;
  }

  .shift-copy,
  .roadmap-copy,
  .food-cinema-copy,
  .step-aside,
  .auth-hero {
    position: relative;
    top: auto;
  }

  .goal-grid-web {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 22px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 10px 0 18px;
    background: rgba(5, 7, 8, 0.72);
    backdrop-filter: blur(18px);
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .brand-link img {
    width: 138px;
  }

  .header-cta {
    display: inline-flex;
    font-size: 13px;
  }

  .site-header.is-scrolled .brand-link img {
    width: 118px;
  }

  .hero-cinematic {
    overflow: hidden;
    min-height: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 100px var(--page-pad) 48px;
  }

  .hero-image {
    background-position: 62% center;
    opacity: 0.94;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.96), rgba(5, 7, 8, 0.68)),
      linear-gradient(180deg, rgba(5, 7, 8, 0.34), transparent 38%, rgba(5, 7, 8, 0.98));
  }

  .hero-copy {
    max-width: 350px;
    padding-top: 0;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(52px, 15.8vw, 68px);
    line-height: 0.94;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-phone {
    top: 22px;
    right: 50%;
    width: min(258px, 69vw);
    transform: translateX(50%) rotateY(-13deg) rotateZ(2deg);
  }

  .phone-mock {
    width: min(286px, 78vw);
    border-radius: 30px;
    box-shadow:
      0 0 0 1px rgba(196, 203, 190, 0.3),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 28px 92px rgba(0, 0, 0, 0.54),
      inset 0 0 0 4px #050708;
  }

  .phone-mock::before {
    inset: 18px -12px 18px auto;
    width: 16px;
  }

  .app-screenshot {
    border-radius: 22px;
  }

  .autopilot-film,
  .management-cycle-section,
  .device-cinema,
  .webapp-cinema,
  .pricing-cinema,
  .proof-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .vision-editorial {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .editorial-image {
    order: 2;
    min-height: 320px;
    background-position: 54% center;
  }

  .editorial-copy {
    order: 1;
    padding: 86px var(--page-pad) 46px;
  }

  .editorial-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.56;
  }

  .editorial-copy blockquote {
    margin-top: 28px;
    padding-left: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .big-statement h2,
  .device-copy h2,
  .editorial-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .big-statement p:not(.eyebrow),
  .device-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.58;
  }

  .film-steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .film-steps p {
    grid-column: auto;
  }

  .cycle-experience,
  .cycle-arguments {
    grid-template-columns: 1fr;
  }

  .cycle-experience {
    margin-top: 26px;
    overflow: visible;
  }

  .cycle-visual {
    width: min(372px, calc(100vw - 32px));
    margin: 0 auto;
    transform: translateX(-8px);
  }

  .cycle-node {
    width: clamp(82px, 24vw, 104px);
    height: clamp(82px, 24vw, 104px);
    min-height: clamp(82px, 24vw, 104px);
    padding: 9px;
    border-color: rgba(247, 244, 236, 0.22);
    background:
      radial-gradient(circle at 62% 32%, rgba(247, 244, 236, 0.16), transparent 42%),
      rgba(18, 23, 24, 0.84);
  }

  .cycle-node strong {
    left: 8px;
    right: 8px;
    max-width: 86px;
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.02;
  }

  .cycle-node > span {
    top: calc(50% - 28px);
    font-size: 10px;
  }

  .cycle-center {
    inset: 32.5%;
    padding: 12px;
  }

  .cycle-center img {
    width: 88%;
  }

  .cycle-orbit {
    inset: 10%;
    filter:
      drop-shadow(0 0 22px rgba(226, 85, 61, 0.24))
      drop-shadow(0 0 60px rgba(247, 244, 236, 0.08));
  }

  .cycle-orbit.inner {
    inset: 23%;
  }

  .node-goal {
    top: 1%;
  }

  .node-plan {
    right: 2%;
    top: 28%;
  }

  .node-decision {
    right: 8%;
    bottom: 4%;
  }

  .node-action {
    left: 8%;
    bottom: 4%;
  }

  .node-control {
    left: 2%;
    top: 28%;
  }

  .cycle-arguments {
    gap: 14px;
    margin-top: 38px;
    margin-bottom: -34px;
  }

  .cycle-arguments article {
    min-height: 210px;
    padding: 24px;
  }

  .cycle-arguments h3 {
    font-size: clamp(24px, 7.1vw, 31px);
  }

  .cycle-dialog-card {
    width: min(430px, calc(100vw - 28px));
    padding: 28px 24px 30px;
  }

  .cycle-dialog-card h3 {
    margin-top: 26px;
  }

  .cycle-dialog-card p {
    font-size: 16px;
    line-height: 1.56;
  }

  .proof-grid,
  .price-grid,
  .membership-grid,
  .intelligence-grid,
  .web-grid,
  .taste-web-grid,
  .signup-panel-grid,
  .signup-subscription,
  .input-grid.three {
    grid-template-columns: 1fr;
  }

  .food-cinema,
  .signup-step,
  .signup-intro,
  .auth-main {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .food-wall,
  .signup-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-main {
    min-height: 100svh;
  }

  .download-hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 104px var(--page-pad) 54px;
  }

  .download-mosaic {
    min-height: auto;
    grid-auto-rows: 132px;
    gap: 10px;
    opacity: 0.92;
  }

  .download-mosaic img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: none !important;
  }

  .download-copy h1 {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: clamp(48px, 13vw, 64px);
    line-height: 0.96;
  }

  .store-button {
    width: 100%;
    min-height: 52px;
  }

  .legal-main {
    padding: 108px var(--page-pad) 58px;
  }

  .legal-main h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.98;
  }

  .legal-main h2 {
    margin-top: 34px;
    font-size: 22px;
    line-height: 1.14;
  }

  .legal-main p,
  .legal-main li {
    font-size: 16px;
    line-height: 1.62;
  }

  .goal-grid-web {
    grid-template-columns: 1fr;
  }

  .web-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .device-cinema {
    display: block;
    min-height: auto;
    overflow: hidden;
  }

  .device-copy {
    max-width: 350px;
    margin-bottom: 36px;
  }

  .device-actions .button {
    width: 100%;
  }

  .device-stage,
  .real-device-stage {
    min-height: 0;
  }

  .device-stage {
    display: flex;
    gap: 22px;
    margin: 0 calc(var(--page-pad) * -1);
    padding: 20px var(--page-pad) 58px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--page-pad);
    -webkit-overflow-scrolling: touch;
  }

  .device-stage::-webkit-scrollbar {
    height: 0;
  }

  .real-device-stage::before {
    inset: 10% 0 2%;
    filter: blur(18px);
  }

  .phone-left,
  .phone-center,
  .phone-right,
  .phone-detail {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex: 0 0 min(286px, 76vw);
    scroll-snap-align: center;
    transform: none;
    opacity: 0.92;
  }

  .phone-left,
  .phone-center,
  .phone-right,
  .phone-left.is-active,
  .phone-center.is-active,
  .phone-right.is-active,
  .phone-left:hover,
  .phone-center:hover,
  .phone-right:hover {
    transform: none;
  }

  .phone-mock.is-active {
    opacity: 1;
    filter: saturate(1.08);
  }

  .real-device-stage .phone-mock.is-active {
    animation: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
