/*
 * Marketing landing — Eat.
 * Dark brand canvas. Satoshi grotesk (Stripe-adjacent) for display and body.
 * Product screenshots are the visual proof.
 */

:root {
  --mkt-canvas: #071018;
  --mkt-ink: #f4f7fb;
  --mkt-muted: #9aafc2;
  --mkt-accent: #2dd4e8;
  --mkt-accent-deep: #0ea5b7;
  --mkt-glow: #1a4a62;
  --mkt-line: rgba(154, 175, 194, 0.18);
  --mkt-font: "Satoshi", "Avenir Next", "Segoe UI", sans-serif;
  --mkt-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mkt-max: 68rem;
  --mkt-nav-offset: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--mkt-nav-offset);
  color-scheme: dark;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.mkt {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--mkt-font);
  font-weight: 400;
  background: var(--mkt-canvas);
  color: var(--mkt-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--mkt-ink);
}

.brand-lockup__mark {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--mkt-accent) 18%, transparent);
}

.brand-lockup__word {
  font-family: var(--mkt-font);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-lockup--nav .brand-lockup__word {
  font-size: 1.45rem;
}

.brand-lockup--finale {
  gap: 0.85rem;
  justify-content: center;
  margin: 0 0 1.15rem;
}

.brand-lockup--finale .brand-lockup__mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
}

.brand-lockup--finale .brand-lockup__word {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
}

.brand-lockup--footer .brand-lockup__mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
}

.brand-lockup--footer .brand-lockup__word {
  font-size: 1.3rem;
}

.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--mkt-canvas) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.mkt-nav__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.mkt-link.is-active {
  color: var(--mkt-ink);
}

@media (min-width: 720px) {
  .mkt-nav__links {
    display: flex;
    margin-left: 1.5rem;
    margin-right: auto;
  }

  .mkt-nav__actions {
    margin-left: 0;
  }
}

.mkt-link {
  color: var(--mkt-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 160ms var(--mkt-ease);
}

.mkt-link:hover {
  color: var(--mkt-ink);
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 160ms var(--mkt-ease), background 160ms var(--mkt-ease), border-color 160ms var(--mkt-ease), color 160ms var(--mkt-ease);
}

.mkt-btn--sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--mkt-ink) 8%, transparent);
  border-color: var(--mkt-line);
  color: var(--mkt-ink);
}

.mkt-btn--sm:hover {
  background: color-mix(in srgb, var(--mkt-ink) 14%, transparent);
}

.mkt-btn--primary {
  background: var(--mkt-accent);
  color: #041018;
}

.mkt-btn--primary:hover {
  background: #67e8f9;
  transform: translateY(-1px);
}

.mkt-btn--secondary {
  background: transparent;
  border-color: color-mix(in srgb, var(--mkt-accent) 45%, var(--mkt-line));
  color: var(--mkt-ink);
}

.mkt-btn--secondary:hover {
  border-color: var(--mkt-accent);
  color: var(--mkt-accent);
  transform: translateY(-1px);
}

.mkt-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.mkt-cta--center {
  justify-content: center;
}

.mkt-store-badge {
  display: inline-flex;
  line-height: 0;
  transition: transform 160ms var(--mkt-ease), opacity 160ms var(--mkt-ease);
}

.mkt-store-badge img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.mkt-store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.mkt-btn--store-align {
  min-height: 2.5rem;
  padding-block: 0.45rem;
}

#download,
#top {
  scroll-margin-top: var(--mkt-nav-offset);
}

.mkt-text-link {
  color: var(--mkt-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.mkt-text-link:hover {
  color: #67e8f9;
}

.mkt-section__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 0;
}

.mkt-section__inner--wide {
  max-width: 48rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Interior page hero —— */
.mkt-page-hero {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.mkt-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--mkt-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-page-hero__title {
  margin: 0 0 1rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.8vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mkt-page-hero__lead {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--mkt-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

/* —— Features pillars —— */
.mkt-pillar {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 8vw, 5rem);
}

.mkt-pillar__intro {
  max-width: 36rem;
  margin: 0 0 2rem;
}

.mkt-pillar__title {
  margin: 0 0 0.85rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.mkt-pillar__lead {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.mkt-pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mkt-line);
}

.mkt-pillar__item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-pillar__item-title {
  margin: 0 0 0.45rem;
  font-family: var(--mkt-font);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.mkt-pillar__item-body {
  margin: 0;
  color: var(--mkt-muted);
  line-height: 1.55;
}

.mkt-pillar__inline-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--mkt-ink);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.mkt-pillar__inline-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--mkt-muted);
  font-weight: 500;
}

.mkt-pillar__inline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mkt-accent);
}

@media (min-width: 720px) {
  .mkt-pillar__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 2rem;
    border-top: none;
  }

  .mkt-pillar__item {
    padding: 0;
    border-bottom: none;
    border-top: 1px solid var(--mkt-line);
    padding-top: 1.35rem;
  }
}

/* —— Compare —— */
.mkt-table-bleed {
  --mkt-table-sticky: #0a1520;
  --mkt-table-head: #0d1c2a;
  --mkt-table-eat: #0c242c;
  max-width: var(--mkt-max);
  margin: 2rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.mkt-table-wrap {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--mkt-line);
  border-radius: 1rem;
  background: var(--mkt-canvas);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--mkt-muted) 45%, transparent) transparent;
}

.mkt-table-wrap:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--mkt-accent) 55%, transparent);
  outline-offset: 3px;
}

.mkt-table-wrap::-webkit-scrollbar {
  height: 0.45rem;
}

.mkt-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.mkt-table-wrap::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--mkt-muted) 40%, transparent);
  border-radius: 999px;
}

.mkt-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.mkt-table th,
.mkt-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--mkt-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.4;
  min-width: 9.5rem;
}

.mkt-table tr:last-child th,
.mkt-table tr:last-child td {
  border-bottom: 0;
}

.mkt-table thead th {
  color: var(--mkt-ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--mkt-table-head);
}

.mkt-table thead th:first-child,
.mkt-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--mkt-table-sticky);
  min-width: 8.75rem;
  max-width: 10rem;
  box-shadow: 1px 0 0 var(--mkt-line);
}

.mkt-table thead th:first-child {
  z-index: 3;
  background: var(--mkt-table-head);
}

.mkt-table thead th:nth-child(2),
.mkt-table tbody td:nth-child(2) {
  color: var(--mkt-ink);
  background: var(--mkt-table-eat);
}

.mkt-table tbody th {
  color: var(--mkt-ink);
  font-weight: 700;
}

.mkt-table td {
  color: var(--mkt-muted);
  background: var(--mkt-canvas);
}

.mkt-table__yes {
  color: color-mix(in srgb, var(--mkt-ink) 88%, var(--mkt-accent));
  font-weight: 600;
}

@media (min-width: 1100px) {
  .mkt-table th,
  .mkt-table td {
    min-width: 0;
  }
}

.mkt-compare-points {
  display: grid;
  gap: 1rem;
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.mkt-compare-card {
  padding: 1.35rem 1.25rem;
  border-top: 1px solid var(--mkt-line);
}

.mkt-compare-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--mkt-font);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.mkt-compare-card__body {
  margin: 0;
  color: var(--mkt-muted);
  line-height: 1.55;
}

@media (min-width: 900px) {
  .mkt-compare-points {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

/* —— Hero: one composition —— */
.mkt-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2rem;
  align-items: end;
  min-height: calc(100dvh - 3.75rem);
  padding: clamp(1.75rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}

.mkt-hero__atmosphere {
  position: absolute;
  inset: -30% -15% auto -15%;
  height: 85%;
  z-index: -1;
  background:
    radial-gradient(44% 55% at 78% 30%, color-mix(in srgb, var(--mkt-accent) 18%, transparent), transparent 70%),
    radial-gradient(52% 62% at 16% 42%, color-mix(in srgb, var(--mkt-glow) 70%, transparent), transparent 72%),
    linear-gradient(180deg, #0a1824 0%, var(--mkt-canvas) 78%);
  animation: mkt-atmosphere 18s var(--mkt-ease) infinite alternate;
}

@keyframes mkt-atmosphere {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.04) translate3d(-1%, 0.75%, 0);
  }
}

.mkt-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  padding-bottom: 0.5rem;
  animation: mkt-rise 900ms var(--mkt-ease) 80ms both;
}

.mkt-hero__title {
  margin: 0 0 1rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--mkt-ink);
}

.mkt-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--mkt-muted);
  line-height: 1.55;
}

.mkt-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-inline: -1.25rem;
  animation: mkt-phone-in 1100ms var(--mkt-ease) 160ms both;
}

.mkt-hero__glow {
  position: absolute;
  inset: 8% 12% 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--mkt-accent) 22%, transparent), transparent 70%);
  filter: blur(32px);
  opacity: 0.85;
}

.mkt-phone {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  border-radius: 1.75rem 1.75rem 0 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--mkt-ink) 10%, transparent),
    0 30px 80px rgba(0, 0, 0, 0.45);
  animation: mkt-float 7s var(--mkt-ease) 1.2s infinite alternate;
}

.mkt-phone--video {
  background: #050d1a;
  object-fit: cover;
  object-position: top center;
}

.mkt-phone--inline {
  border-radius: 1.75rem;
  width: min(100%, 20rem);
  animation: none;
  margin-inline: auto;
}

@keyframes mkt-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mkt-phone-in {
  from {
    opacity: 0;
    transform: translate3d(0, 2.5rem, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes mkt-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -0.65rem, 0);
  }
}

@media (min-width: 900px) {
  .mkt-hero {
    grid-template-columns: minmax(0, 30rem) minmax(18rem, 24rem);
    justify-content: center;
    align-items: end;
    column-gap: clamp(2rem, 5vw, 4rem);
    width: min(100%, var(--mkt-max));
    margin-inline: auto;
    min-height: calc(100dvh - 3.75rem);
    padding: 2rem clamp(1.5rem, 3vw, 2.5rem) 0;
  }

  .mkt-hero__copy {
    max-width: 30rem;
    align-self: center;
    padding-bottom: 2.5rem;
  }

  .mkt-hero__visual {
    margin-inline: 0;
    justify-content: end;
    align-self: end;
    height: auto;
    min-height: 0;
  }

  .mkt-hero__glow {
    inset: 5% 0 10% 10%;
  }

  .mkt-phone {
    width: min(100%, 26rem);
    max-height: calc(100dvh - 5rem);
    object-fit: cover;
    object-position: top center;
    border-radius: 1.85rem 1.85rem 0 0;
  }
}

/* —— Benefit sections —— */
.mkt-section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.mkt-section__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.mkt-section__title {
  margin: 0 0 1rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.mkt-section__body {
  margin: 0;
  font-size: 1.08rem;
  color: var(--mkt-muted);
  line-height: 1.6;
}

.mkt-section__body--wide {
  max-width: 36rem;
  margin-inline: auto;
}

.mkt-section__body em {
  font-family: var(--mkt-font);
  font-style: italic;
  font-weight: 400;
  color: var(--mkt-ink);
}

.mkt-section--split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--mkt-max);
  margin-inline: auto;
}

.mkt-section__text {
  max-width: 28rem;
}

.mkt-section__media {
  display: flex;
  justify-content: center;
}

.mkt-section--band {
  background:
    radial-gradient(80% 100% at 50% 0%, color-mix(in srgb, var(--mkt-glow) 40%, transparent), transparent 70%);
  border-block: 1px solid var(--mkt-line);
}

.mkt-section--contrast {
  background: linear-gradient(180deg, color-mix(in srgb, var(--mkt-accent-deep) 10%, var(--mkt-canvas)), var(--mkt-canvas));
}

/* —— How it works —— */
.mkt-steps {
  list-style: none;
  display: grid;
  gap: 1.75rem;
  max-width: var(--mkt-max);
  margin: 2.75rem auto 0;
  padding: 0;
}

.mkt-steps__item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--mkt-line);
}

.mkt-steps__num {
  display: block;
  margin: 0 0 0.75rem;
  color: var(--mkt-accent);
  font-family: var(--mkt-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mkt-steps__title {
  margin: 0 0 0.55rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mkt-steps__body {
  margin: 0;
  max-width: 18rem;
  color: var(--mkt-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .mkt-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* —— FAQ —— */
.mkt-faq {
  max-width: 40rem;
  margin: 2.5rem auto 0;
}

.mkt-faq__item {
  border-top: 1px solid var(--mkt-line);
}

.mkt-faq__item:last-child {
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--mkt-font);
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
}

.mkt-faq__q::-webkit-details-marker {
  display: none;
}

.mkt-faq__q::after {
  content: "+";
  float: right;
  color: var(--mkt-accent);
  font-weight: 500;
}

.mkt-faq__item[open] .mkt-faq__q::after {
  content: "–";
}

.mkt-faq__a {
  margin: 0 0 1.25rem;
  color: var(--mkt-muted);
  line-height: 1.6;
}

@media (min-width: 900px) {
  .mkt-section--split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .mkt-section--reverse .mkt-section__text {
    order: 2;
  }

  .mkt-section--reverse .mkt-section__media {
    order: 1;
  }
}

/* —— Finale —— */
.mkt-finale {
  padding: clamp(4.5rem, 12vw, 8rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 100%, color-mix(in srgb, var(--mkt-accent) 18%, transparent), transparent 70%);
}

.mkt-finale__title {
  margin: 0 0 0.75rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  letter-spacing: -0.04em;
}

.mkt-finale__lead {
  margin: 0 0 1.75rem;
  color: var(--mkt-muted);
}

.mkt-finale .mkt-cta {
  justify-content: center;
}

/* —— Footer —— */
.mkt-footer {
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid var(--mkt-line);
}

.mkt-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--mkt-max);
  margin: 0 auto 1rem;
}

.mkt-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.mkt-page-hero--about {
  max-width: 38rem;
  text-align: left;
  margin-inline: auto;
  padding-bottom: 1.5rem;
}

.mkt-page-hero--about .mkt-page-hero__lead {
  margin-inline: 0;
  font-size: 1.15rem;
}

.mkt-about-person,
.mkt-about-company {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4rem);
}

.mkt-about-person {
  padding-top: 1rem;
  border-top: 1px solid var(--mkt-line);
}

.mkt-about-person__name {
  margin: 0 0 0.35rem;
  font-family: var(--mkt-font);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  letter-spacing: -0.035em;
}

.mkt-about-person__role {
  margin: 0 0 1rem;
  color: var(--mkt-accent);
  font-size: 0.98rem;
  font-weight: 700;
}

.mkt-about-person__bio,
.mkt-about-company__body {
  margin: 0 0 1rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.mkt-about-company__name {
  margin: 0 0 0.75rem;
  font-family: var(--mkt-font);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.mkt-about-company__body:last-child {
  margin-bottom: 0;
}

/* —— Docs (marketing shell) —— */
.mkt-doc {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.mkt-doc__section {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
}

.mkt-doc__heading {
  margin: 0 0 0.85rem;
  font-family: var(--mkt-font);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.mkt-doc__body {
  margin: 0 0 0.85rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.mkt-doc__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mkt-doc__list li + li {
  margin-top: 0.55rem;
}

.mkt-doc__list strong {
  color: var(--mkt-ink);
  font-weight: 600;
}

.mkt-footer__fine {
  max-width: var(--mkt-max);
  margin: 0 auto;
  color: color-mix(in srgb, var(--mkt-muted) 75%, transparent);
  font-size: 0.85rem;
}

/* —— Photo logging demo in hero (CSS loop: capture → analyze → result) —— */
a.mkt-photo-demo {
  --mkt-photo-loop: 10s;
  position: relative;
  display: block;
  width: min(100%, 17.5rem);
  z-index: 1;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.mkt-photo-demo:hover .mkt-photo-demo__stage,
a.mkt-photo-demo:focus-visible .mkt-photo-demo__stage {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--mkt-accent) 45%, transparent),
    0 30px 80px rgba(0, 0, 0, 0.45);
}

a.mkt-photo-demo:focus-visible {
  outline: none;
}

.mkt-photo-demo__stage {
  position: relative;
  aspect-ratio: 9 / 14;
  max-height: min(28rem, calc(100dvh - 8rem));
  border-radius: 1.5rem;
  overflow: hidden;
  background: #050d1a;
  border: 1px solid color-mix(in srgb, var(--mkt-ink) 10%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--mkt-ink) 8%, transparent),
    0 24px 60px rgba(0, 0, 0, 0.42);
  animation: mkt-float 7s var(--mkt-ease) 1.2s infinite alternate;
}

.mkt-photo-phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.mkt-photo-phase--capture {
  animation: mkt-photo-phase-capture var(--mkt-photo-loop) var(--mkt-ease) infinite;
}

.mkt-photo-phase--analyze {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.85rem 1.1rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--mkt-glow) 55%, #0a1520), #0a1520 60%);
  animation: mkt-photo-phase-analyze var(--mkt-photo-loop) var(--mkt-ease) infinite;
}

.mkt-photo-phase--result {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.85rem 1.1rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--mkt-glow) 55%, #0a1520), #0a1520 60%);
  animation: mkt-photo-phase-result var(--mkt-photo-loop) var(--mkt-ease) infinite;
}

.mkt-photo-phase__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mkt-photo-shutter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 1rem 0 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72) 35%);
}

.mkt-photo-shutter__btn {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: inset 0 0 0 3px #050d1a;
  background: #fff;
  animation: mkt-photo-shutter-pulse var(--mkt-photo-loop) var(--mkt-ease) infinite;
}

.mkt-photo-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  animation: mkt-photo-flash var(--mkt-photo-loop) linear infinite;
}

.mkt-photo-phase__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0 0.1rem;
}

.mkt-photo-phase__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mkt-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--mkt-accent) 55%, transparent);
}

.mkt-photo-phase__label {
  color: var(--mkt-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-photo-card {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.75rem 0.85rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: color-mix(in srgb, #131c2e 92%, #071018);
  border: 1px solid var(--mkt-line);
}

.mkt-photo-card--pending {
  border-color: color-mix(in srgb, var(--mkt-accent) 40%, var(--mkt-line));
}

.mkt-photo-card__thumb {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.75rem;
  object-fit: cover;
  background: #0a1520;
}

.mkt-photo-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.mkt-photo-card__name {
  margin: 0;
  font-family: var(--mkt-font);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
  overflow-wrap: anywhere;
}

.mkt-photo-card__macros {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mkt-photo-card__lines {
  grid-column: 1 / -1;
  margin-top: 0.15rem;
}

.mkt-photo-card__thinking {
  display: flex;
  gap: 0.28rem;
  margin: 0.15rem 0 0;
}

.mkt-photo-card__thinking span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mkt-accent);
  animation: mkt-photo-dot 1s var(--mkt-ease) infinite;
}

.mkt-photo-card__thinking span:nth-child(2) {
  animation-delay: 0.15s;
}

.mkt-photo-card__thinking span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes mkt-photo-phase-capture {
  0%,
  2% {
    opacity: 0;
  }
  6%,
  30% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
  }
}

@keyframes mkt-photo-phase-analyze {
  0%,
  32% {
    opacity: 0;
    transform: translate3d(0, 0.4rem, 0);
  }
  38%,
  52% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  58%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.25rem, 0);
  }
}

@keyframes mkt-photo-phase-result {
  0%,
  54% {
    opacity: 0;
    transform: translate3d(0, 0.4rem, 0) scale(0.985);
  }
  62%,
  92% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  98%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.2rem, 0) scale(0.99);
  }
}

@keyframes mkt-photo-shutter-pulse {
  0%,
  22% {
    transform: scale(1);
  }
  26% {
    transform: scale(0.9);
  }
  30%,
  100% {
    transform: scale(1);
  }
}

@keyframes mkt-photo-flash {
  0%,
  27% {
    opacity: 0;
  }
  28% {
    opacity: 0.85;
  }
  32%,
  100% {
    opacity: 0;
  }
}

@keyframes mkt-photo-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.15rem);
  }
}

@media (min-width: 900px) {
  a.mkt-photo-demo {
    width: min(100%, 22rem);
  }

  .mkt-photo-demo__stage {
    max-height: none;
    height: min(44rem, calc(100dvh - 3.5rem));
    aspect-ratio: auto;
    border-radius: 1.75rem 1.75rem 0 0;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-photo-demo__stage {
    animation: none !important;
  }

  .mkt-photo-phase--capture,
  .mkt-photo-phase--analyze {
    animation: none !important;
    opacity: 0 !important;
  }

  .mkt-photo-phase--result {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mkt-photo-shutter__btn,
  .mkt-photo-flash,
  .mkt-photo-card__thinking span {
    animation: none !important;
  }

  .mkt-photo-flash {
    opacity: 0 !important;
  }
}

/* —— Voice logging demo (CSS loop: listen → analyze → result) —— */
.mkt-voice-demo {
  --mkt-voice-loop: 9s;
}

.mkt-voice-demo .mkt-section__media,
.mkt-voice-demo .mkt-section__text {
  min-width: 0;
}

.mkt-voice-stage {
  position: relative;
  width: min(100%, 22rem);
  max-width: 100%;
  margin-inline: auto;
  padding: 1rem 1rem 1.25rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--mkt-glow) 55%, #0a1520), #0a1520 55%);
  border: 1px solid var(--mkt-line);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--mkt-ink) 6%, transparent),
    0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.mkt-voice-stage__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0 0.15rem;
}

.mkt-voice-stage__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mkt-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--mkt-accent) 55%, transparent);
}

.mkt-voice-stage__label {
  color: var(--mkt-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-voice-mic-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  border: 1px solid var(--mkt-line);
  border-radius: 50%;
  background: color-mix(in srgb, #131c2e 92%, #071018);
  color: var(--mkt-ink);
  animation: mkt-voice-mic-live var(--mkt-voice-loop) var(--mkt-ease) infinite;
}

.mkt-voice-mic-btn__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
}

.mkt-voice-mic-btn__icon svg {
  width: 100%;
  height: 100%;
}

.mkt-voice-mic-btn__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: conic-gradient(
    from 0deg,
    var(--mkt-accent) 0deg,
    var(--mkt-accent) 180deg,
    transparent 180deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 2px), #000 calc(50% - 2px), #000 50%, transparent 50%);
  mask: radial-gradient(circle, transparent calc(50% - 2px), #000 calc(50% - 2px), #000 50%, transparent 50%);
  animation:
    mkt-voice-mic-spin 1.4s linear infinite,
    mkt-voice-mic-breathe 1.6s ease-in-out infinite,
    mkt-voice-mic-pulse-show var(--mkt-voice-loop) var(--mkt-ease) infinite;
}

.mkt-voice-stack {
  position: relative;
  min-height: 14.5rem;
}

.mkt-voice-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.05rem;
  border-radius: 1rem;
  background: color-mix(in srgb, #131c2e 92%, #071018);
  border: 1px solid var(--mkt-line);
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  pointer-events: none;
}

.mkt-voice-card--listen {
  animation: mkt-voice-phase-listen var(--mkt-voice-loop) var(--mkt-ease) infinite;
}

.mkt-voice-card--analyze {
  border-color: color-mix(in srgb, var(--mkt-accent) 40%, var(--mkt-line));
  animation: mkt-voice-phase-analyze var(--mkt-voice-loop) var(--mkt-ease) infinite;
}

.mkt-voice-card--result {
  animation: mkt-voice-phase-result var(--mkt-voice-loop) var(--mkt-ease) infinite;
}

.mkt-voice-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mkt-voice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--mkt-accent) 35%, transparent);
  background: color-mix(in srgb, var(--mkt-accent) 12%, transparent);
  color: var(--mkt-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mkt-voice-pill--pending {
  border-color: color-mix(in srgb, var(--mkt-accent) 45%, transparent);
}

.mkt-voice-spin {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--mkt-accent) 28%, transparent);
  border-top-color: var(--mkt-accent);
  animation: mkt-voice-spin 0.85s linear infinite;
}

.mkt-voice-card__name {
  margin: 0.15rem 0 0;
  font-family: var(--mkt-font);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mkt-voice-card__live {
  position: relative;
  margin: 0.15rem 0 0;
  min-height: 3.4rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--mkt-ink) 6%, transparent);
  border: 1px solid var(--mkt-line);
  color: var(--mkt-ink);
  font-size: 0.92rem;
  line-height: 1.4;
  overflow: hidden;
}

.mkt-voice-type {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  clip-path: inset(0 100% 0 0);
  animation: mkt-voice-type var(--mkt-voice-loop) steps(36, end) infinite;
}

.mkt-voice-card__macros {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.mkt-voice-card__kcal {
  color: var(--mkt-ink);
  font-weight: 700;
}

.mkt-voice-card__quote {
  margin: 0.15rem 0 0;
  color: color-mix(in srgb, var(--mkt-muted) 90%, transparent);
  font-size: 0.86rem;
  line-height: 1.4;
  font-style: italic;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mkt-voice-lines {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.45rem 0 0;
  border-top: 1px solid var(--mkt-line);
  display: grid;
  gap: 0.35rem;
}

.mkt-voice-lines li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--mkt-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.mkt-voice-lines__name {
  min-width: 0;
  overflow-wrap: anywhere;
  color: color-mix(in srgb, var(--mkt-ink) 88%, var(--mkt-muted));
}

.mkt-voice-lines__kcal {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

@keyframes mkt-voice-phase-listen {
  0%,
  2% {
    opacity: 0;
    transform: translate3d(0, 0.45rem, 0);
  }
  8%,
  32% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  38%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.25rem, 0);
  }
}

@keyframes mkt-voice-phase-analyze {
  0%,
  34% {
    opacity: 0;
    transform: translate3d(0, 0.45rem, 0);
  }
  40%,
  54% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  60%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.25rem, 0);
  }
}

@keyframes mkt-voice-phase-result {
  0%,
  56% {
    opacity: 0;
    transform: translate3d(0, 0.45rem, 0) scale(0.985);
  }
  64%,
  92% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  98%,
  100% {
    opacity: 0;
    transform: translate3d(0, -0.2rem, 0) scale(0.99);
  }
}

@keyframes mkt-voice-type {
  0%,
  6% {
    clip-path: inset(0 100% 0 0);
  }
  10%,
  32% {
    clip-path: inset(0 0 0 0);
  }
  38%,
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

@keyframes mkt-voice-mic-live {
  0%,
  6% {
    border-color: var(--mkt-line);
    background: color-mix(in srgb, #131c2e 92%, #071018);
    color: var(--mkt-ink);
  }
  8%,
  34% {
    border-color: color-mix(in srgb, var(--mkt-accent) 55%, transparent);
    background: color-mix(in srgb, var(--mkt-accent) 12%, #131c2e);
    color: var(--mkt-accent);
  }
  38%,
  100% {
    border-color: var(--mkt-line);
    background: color-mix(in srgb, #131c2e 92%, #071018);
    color: var(--mkt-ink);
  }
}

@keyframes mkt-voice-mic-pulse-show {
  0%,
  6% {
    opacity: 0;
  }
  8%,
  34% {
    opacity: 1;
  }
  38%,
  100% {
    opacity: 0;
  }
}

@keyframes mkt-voice-mic-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes mkt-voice-mic-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--mkt-accent) 55%, transparent));
  }
}

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

@media (min-width: 900px) {
  .mkt-voice-demo.mkt-section--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-voice-card--listen,
  .mkt-voice-card--analyze {
    animation: none !important;
    opacity: 0 !important;
  }

  .mkt-voice-card--result {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mkt-voice-type {
    animation: none !important;
    clip-path: none !important;
  }

  .mkt-voice-mic-btn,
  .mkt-voice-mic-btn__pulse,
  .mkt-voice-spin {
    animation: none !important;
  }

  .mkt-voice-mic-btn {
    border-color: color-mix(in srgb, var(--mkt-accent) 55%, transparent);
    background: color-mix(in srgb, var(--mkt-accent) 12%, #131c2e);
    color: var(--mkt-accent);
  }

  .mkt-voice-mic-btn__pulse {
    opacity: 0 !important;
  }
}
