:root {
  --bg: #050505;
  --bg-elevated: #0c0c0e;
  --card: #121214;
  --card-blue: #10141c;
  --card-green: #10160f;
  --card-warm: #16120f;
  --card-purple: #121018;
  --text: #ffffff;
  --muted: #a1a1aa;
  --faint: #71717a;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d4ff1a;
  --accent-ink: #0a0a0a;
  --purple: #8b5cf6;
  --radius: 32px;
  --radius-sm: 20px;
  --nav-h: 76px;
  --max: 1180px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 8px 12px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--center {
  text-align: center;
}

.section,
.hero,
.cta-band,
.wellness-band {
  scroll-margin-top: 88px;
}

.section {
  padding: 96px 24px 24px;
}

.demo-card {
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-blue);
  display: grid;
  gap: 18px;
}

.demo-card__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.demo-card__copy p {
  margin: 0;
  color: var(--muted);
}

.demo-card__stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  aspect-ratio: 16 / 9;
}

.demo-card__media,
.demo-card__media video,
.demo-card__media iframe,
.demo-card__placeholder {
  width: 100%;
  height: 100%;
}

.demo-card__media video,
.demo-card__media iframe {
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}

.demo-card__placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(212, 255, 26, 0.06), transparent 40%),
    #0a0a0c;
  color: var(--accent);
}

.demo-card__placeholder span {
  font-size: 22px;
  font-weight: 700;
}

.demo-card__placeholder em {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.demo-card__expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.section__title {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--lg {
  min-height: 52px;
  padding: 0 26px;
  font-size: 16px;
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--light {
  background: #fff;
  color: #111;
}

.btn--dark {
  background: #111;
  color: #fff;
}

.btn--ghost,
.btn--ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

.btn--ghost-dark {
  width: 100%;
}

.btn--outline-on-accent {
  border: 1px solid rgba(10, 10, 10, 0.28);
  color: var(--accent-ink);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav__brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: #000;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links > a,
.nav__trigger {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.nav__item {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  background: #141416;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.nav__dropdown a:hover,
.nav__links > a:hover,
.nav__trigger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  display: block;
}

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

.nav__menu {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  place-items: center;
  gap: 5px;
}

.nav__menu span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.mobile-drawer {
  position: sticky;
  top: var(--nav-h);
  z-index: 30;
  display: none;
  gap: 4px;
  padding: 12px 20px 20px;
  background: #0b0b0d;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer:not([hidden]) {
  display: grid;
}

.mobile-drawer a {
  padding: 12px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.hero {
  padding: 12px 16px 32px;
}

.hero__stage {
  position: relative;
  min-height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 40px;
  background: #0a0a0a;
}

.hero__media,
.hero__media video,
.hero__media iframe,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(1.35);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.82) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 16vh 28px 80px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.feature-card {
  display: grid;
  gap: 32px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--card-blue);
}

.feature-card--wide {
  max-width: var(--max);
  margin: 0 auto 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-card--clients,
.feature-card--delivery {
  grid-template-columns: 1fr;
}

.feature-card__visual--proofs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.feature-card--nutrition {
  background: var(--card-green);
}

.feature-card--recipes {
  background: var(--card-warm);
}

.feature-card--wellness {
  background: var(--card-purple);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card--tile {
  min-height: 100%;
}

.feature-card__visual {
  display: flex;
  justify-content: center;
}

.feature-card__visual--phones {
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.feature-card__visual--phones .phone {
  flex: 0 0 auto;
  width: min(220px, 46%);
  min-width: 0;
}

.phone {
  width: min(320px, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  background: #000;
}

.phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

.phone--sm {
  width: min(240px, 100%);
  margin: 8px auto 0;
}

button.phone {
  padding: 0;
  text-align: left;
}

.phone--more {
  position: relative;
  cursor: pointer;
}

.phone-more__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--accent);
  pointer-events: none;
}

.phone--more:hover .phone-more__overlay,
.phone--more:focus-visible .phone-more__overlay {
  background: rgba(0, 0, 0, 0.38);
}

.phone-more__overlay strong {
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.phone-more__overlay em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

div.gallery {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: auto;
  padding: 72px 20px 32px;
  background: rgba(0, 0, 0, 0.88);
}

div.gallery.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100;
}

.gallery__grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  justify-items: center;
}

.gallery__grid .phone {
  width: min(220px, 100%);
}

.boot-inline {
  display: grid;
  gap: 12px;
}

.boot-inline h3 {
  margin: 0;
}

.boot-inline p {
  margin: 0 0 8px;
}

.feature-card .video-card {
  width: 100%;
}

.video-card {
  position: relative;
  display: block;
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #17171a;
  aspect-ratio: 16 / 9;
}

.video-card__media,
.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.play-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.video-hint {
  max-width: var(--max);
  margin: 16px auto 0;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.video-hint code {
  color: var(--muted);
}

.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  margin-bottom: 16px;
  background: #111;
}

.story h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.wellness-band {
  padding-top: 40px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
}

.price-card--featured {
  background: #16180d;
  border-color: rgba(212, 255, 26, 0.28);
}

.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 700;
}

.price-card__name {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.price-card__amount {
  margin: 10px 0 6px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-card__amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.price-card__tag {
  margin: 0 0 18px;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: rgba(255, 255, 255, 0.86);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.price-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.cta-band {
  padding: 24px 16px 48px;
}

.cta-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 36px;
  background: var(--accent);
  color: var(--accent-ink);
}

.cta-band h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #111;
  color: #fff;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.footer {
  padding: 72px 24px 28px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  max-width: var(--max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer__blurb {
  margin: 0 0 14px;
  color: var(--muted);
}

.footer__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.footer__legal {
  display: flex;
  gap: 18px;
}

.footer__legal a {
  padding: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.lightbox__frame video,
.lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 28px;
  line-height: 1;
}

@media (min-width: 981px) {
  .mobile-drawer:not([hidden]) {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav__links,
  .nav__actions .btn--ghost {
    display: none;
  }

  .nav__menu {
    display: grid;
  }

  .feature-card--wide,
  .feature-card__visual--proofs,
  .feature-grid,
  .story-grid,
  .story-grid--2,
  .price-grid,
  .footer__grid,
  .cta-band__inner,
  .walk__step {
    grid-template-columns: 1fr;
  }

  .walk__step {
    padding: 22px 18px;
  }

  .cta-band__inner {
    display: grid;
  }

  .hero {
    padding: 8px 12px 24px;
  }

  .section {
    padding: 72px 16px 16px;
  }

  .phone {
    width: min(280px, 86vw);
  }

  .feature-card__visual--phones .phone {
    width: min(240px, 46%);
  }
}

@media (max-width: 640px) {
  .hero__stage {
    min-height: auto;
    border-radius: 24px;
  }

  .hero__copy {
    padding: 18vh 18px 48px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .lede {
    font-size: 15px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  .feature-card__visual--phones {
    flex-direction: column;
    align-items: center;
  }

  .feature-card__visual--phones .phone {
    width: min(280px, 86vw);
  }

  .section__title {
    margin-bottom: 28px;
  }

  .price-card__amount {
    font-size: 30px;
  }

  .cta-band {
    padding: 16px 12px 32px;
  }

  .cta-band__inner {
    padding: 28px 20px;
  }

  .footer {
    padding: 48px 16px 28px;
  }

  .footer__bar,
  .contact-icons,
  .footer__legal {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .nav {
    padding-top: env(safe-area-inset-top);
  }
}

.dash {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.dash img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.dash--code {
  width: 100%;
}

.dash--code img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #0b0b0f;
}

.feature-card__visual--stack {
  display: grid;
  gap: 12px;
  width: 100%;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.skill-pills li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.story img.story--wide {
  aspect-ratio: 16 / 10;
}

.section__lede {
  max-width: 720px;
  margin: -8px auto 36px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.section__lede code {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92em;
}

.lifecycle {
  max-width: var(--max);
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lifecycle li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lifecycle a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #121214;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.lifecycle li:not(:last-child)::after {
  content: "→";
  color: var(--accent);
  font-weight: 500;
}

.walk {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.walk__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 28px 24px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--line);
}

.walk__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.walk__step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.walk__step p {
  margin: 0 0 16px;
  color: var(--muted);
}

.codeblock {
  margin: 0;
  overflow-x: auto;
  padding: 16px 18px;
  border-radius: 16px;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4d4d8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.55;
  -webkit-overflow-scrolling: touch;
}

.codeblock .c {
  color: #71717a;
}

.codeblock .k {
  color: var(--accent);
}

.story--span {
  max-width: var(--max);
  margin: 36px auto 28px;
}

.story-grid--2 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 641px) {
  .feature-card__visual--phones:has(.phone--more) {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .feature-card__visual--phones:has(.phone--more) .phone {
    width: min(160px, 30%);
  }
}

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

  .btn:hover {
    transform: none;
  }
}
