:root {
  color-scheme: light;
  --paper: #f2efe8;
  --paper-2: #e9e5dc;
  --surface: #fffdf8;
  --ink: #151513;
  --muted: #696760;
  --line: #cac5ba;
  --line-dark: rgba(21, 21, 19, 0.16);
  --coral: #ff5b3a;
  --coral-dark: #df3e21;
  --lime: #d9f45d;
  --violet: #765cff;
  --green: #22a866;
  --shadow: 0 28px 80px rgba(30, 27, 23, 0.14);
  --display: "Unbounded", "Manrope", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 5vw, 67px);
  line-height: 1.06;
}

h3 {
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.14;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 154px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label > span {
  width: 26px;
  height: 2px;
  background: var(--coral);
}

.section-text {
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button span {
  font-size: 18px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-3px);
}

.button--compact {
  min-height: 42px;
  padding: 0 15px;
  font-size: 11px;
}

.button--coral {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 15px 32px rgba(255, 91, 58, 0.22);
}

.button--coral:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 40px rgba(255, 91, 58, 0.29);
}

.button--ink {
  color: #fff;
  background: var(--ink);
}

.button--ink:hover {
  background: #33332f;
}

.button--paper {
  border-color: var(--line-dark);
  background: var(--surface);
}

.button--paper:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(30, 27, 23, 0.08);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: max(12px, env(safe-area-inset-top)) max(24px, calc((100vw - var(--shell)) / 2)) 12px;
  border-bottom: 1px solid transparent;
  background: rgba(242, 239, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: min-height 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  border-color: var(--line-dark);
  box-shadow: 0 12px 36px rgba(30, 27, 23, 0.06);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.wordmark i {
  width: 7px;
  height: 7px;
  margin-top: -11px;
  border-radius: 50%;
  background: var(--coral);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.desktop-nav a,
.text-action {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a::after,
.text-action::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.text-action:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.72);
}

.language-switcher button {
  min-width: 32px;
  height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease;
}

.language-switcher button:hover {
  color: var(--ink);
}

.language-switcher button.is-active {
  color: #fff;
  background: var(--ink);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background:
    radial-gradient(circle at 8% 30%, rgba(217, 244, 93, 0.5), transparent 26rem),
    linear-gradient(180deg, #f7f4ed 0%, var(--paper) 100%);
}

.hero::before {
  position: absolute;
  inset: 72px 0 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 21, 19, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 19, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.6), transparent 92%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding-top: clamp(58px, 7vw, 104px);
  padding-bottom: clamp(76px, 8vw, 118px);
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero-intro {
  animation: hero-up 620ms 80ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero h1 {
  max-width: 760px;
  margin-top: 20px;
  animation: hero-up 760ms 140ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero h1.is-typing::after {
  display: inline-block;
  width: 0.075em;
  height: 0.86em;
  margin-left: 0.08em;
  border-radius: 2px;
  background: currentColor;
  content: "";
  vertical-align: -0.06em;
  animation: typewriter-caret 680ms steps(1, end) infinite;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 3%;
  bottom: -7px;
  left: 1%;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 700ms 780ms both ease-out;
}

.hero__lead {
  max-width: 650px;
  margin-top: 26px;
  color: #52514c;
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.65;
  animation: hero-up 720ms 220ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  animation: hero-up 720ms 300ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__whatsapp {
  margin-left: 8px;
  padding: 10px 0 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero__whatsapp:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  animation: hero-up 720ms 360ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__facts li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px 0 0;
}

.hero__facts b {
  font-size: 11px;
}

.hero__facts span {
  color: var(--muted);
  font-size: 9px;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 690px;
  perspective: 1200px;
  animation: stage-arrive 980ms 220ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-grid {
  position: absolute;
  z-index: -1;
  inset: 5% -18% -10% 0;
  border: 1px solid rgba(21, 21, 19, 0.14);
  background: var(--lime);
  clip-path: polygon(16% 0, 100% 7%, 92% 92%, 0 100%);
  transform: rotate(1deg);
  animation: stage-loop 14s ease-in-out infinite;
}

.stage-stamp {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: -6px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  font-family: var(--display);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
  transform: rotate(8deg);
}

.hero-float {
  will-change: transform;
}

.phone-window,
.hero-analytics,
.hero-source {
  position: absolute;
  border: 1px solid var(--ink);
  background: var(--surface);
  box-shadow: 18px 22px 0 rgba(21, 21, 19, 0.1);
}

.admin-window {
  z-index: 1;
  top: 98px;
  right: -36px;
  width: min(760px, 103%);
  overflow: hidden;
  border-radius: 8px;
  transform: rotate(1.5deg);
}

.window-bar {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 9px;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: #ffc943;
}

.window-dots i:last-child {
  background: var(--lime);
}

.window-bar > span {
  justify-self: center;
  color: var(--muted);
}

.window-bar > b {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 8px;
}

.window-bar > b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.admin-window > img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  object-position: top left;
}

.phone-window {
  z-index: 3;
  top: 72px;
  bottom: auto;
  left: 17%;
  width: 276px;
  padding: 9px;
  overflow: hidden;
  border-radius: 26px;
  animation: phone-window-loop 8s ease-in-out infinite;
}

.phone-window header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25px;
  padding: 0 8px;
  font-size: 8px;
}

.phone-window header b {
  padding: 3px 5px;
  color: var(--ink);
  background: var(--lime);
  font-size: 7px;
}

.phone-window img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

.hero-analytics {
  z-index: 4;
  right: -6px;
  bottom: 68px;
  width: 305px;
  padding: 16px;
  border-radius: 6px;
  animation: analytics-window-loop 7s -2.3s ease-in-out infinite;
}

.mini-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.mini-card-head b {
  padding: 3px 5px;
  color: var(--ink);
  background: var(--lime);
  font-size: 7px;
}

.hero-analytics > strong {
  display: block;
  margin-top: 9px;
  font-family: var(--display);
  font-size: 23px;
}

.hero-analytics > strong small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 600;
}

.mini-chart {
  display: flex;
  height: 64px;
  align-items: end;
  gap: 6px;
  margin: 12px 0 8px;
  border-bottom: 1px solid var(--line-dark);
}

.mini-chart i {
  flex: 1;
  height: var(--h);
  background: var(--violet);
  transform-origin: bottom;
  animation: mini-bar-loop 3.8s ease-in-out infinite;
}

.mini-chart i:nth-child(2) { animation-delay: -0.45s; }
.mini-chart i:nth-child(3) { animation-delay: -0.9s; }
.mini-chart i:nth-child(4) { animation-delay: -1.35s; }
.mini-chart i:nth-child(5) { animation-delay: -1.8s; }
.mini-chart i:nth-child(6) { animation-delay: -2.25s; }
.mini-chart i:nth-child(7) { animation-delay: -2.7s; }

.mini-chart i:nth-child(6) {
  background: var(--coral);
}

.hero-analytics > p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 700;
}

.hero-analytics > p span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.hero-source {
  z-index: 5;
  top: 36px;
  left: -4px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  width: 220px;
  padding: 10px;
  border-radius: 6px;
  animation: source-window-loop 6.4s -1.2s ease-in-out infinite;
}

.qr-mini {
  position: relative;
  width: 48px;
  height: 48px;
  border: 5px solid var(--surface);
  background:
    repeating-conic-gradient(var(--ink) 0 25%, transparent 0 50%) 50% / 10px 10px;
  box-shadow: 0 0 0 1px var(--ink);
}

.hero-source div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-source span,
.hero-source small {
  color: var(--muted);
  font-size: 7px;
}

.hero-source strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-ticker {
  position: relative;
  z-index: 6;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  color: var(--surface);
  background: var(--ink);
}

.hero-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  min-height: 52px;
  padding-right: 26px;
  animation: ticker 30s linear infinite;
}

.hero-ticker span {
  font-family: var(--display);
  font-size: 10px;
  white-space: nowrap;
}

.hero-ticker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.product-overview {
  background: var(--surface);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}

.split-heading h2 {
  max-width: 920px;
}

.split-heading > div > p {
  max-width: 720px;
  margin-top: 27px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-rail article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  transition: color 220ms ease, background 220ms ease;
}

.product-rail article:last-child {
  border-right: 0;
}

.product-rail article:hover {
  background: var(--lime);
}

.product-rail article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.product-rail strong {
  display: block;
  margin-top: 38px;
  font-size: 17px;
}

.product-rail p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.guest-section {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.guest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(50px, 9vw, 132px);
  align-items: center;
}

.guest-copy h2 {
  max-width: 760px;
  margin-top: 20px;
}

.guest-copy > .section-text {
  max-width: 670px;
  margin-top: 25px;
}

.feature-lines {
  margin: 38px 0;
  border-top: 1px solid var(--line-dark);
}

.feature-lines li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature-lines li > b {
  color: var(--coral);
  font-family: var(--display);
  font-size: 9px;
}

.feature-lines li > span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
}

.feature-lines strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
}

.guest-visual {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
}

.guest-visual::before {
  position: absolute;
  z-index: -1;
  width: min(610px, 110%);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.large-phone {
  width: 310px;
  padding: 11px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 38px;
  background: #10100f;
  box-shadow: 20px 28px 0 rgba(21, 21, 19, 0.13), var(--shadow);
  transform: rotate(1.5deg);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guest-visual:hover .large-phone {
  transform: rotate(0deg) translateY(-6px);
}

.large-phone__speaker {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 80px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #10100f;
  transform: translateX(-50%);
}

.large-phone img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.guest-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  font-family: var(--display);
  font-size: 8px;
  animation: orbit-float 4s ease-in-out infinite;
}

.guest-orbit--one {
  top: 11%;
  left: 2%;
  color: #fff;
  background: var(--violet);
}

.guest-orbit--two {
  right: 0;
  bottom: 22%;
  animation-delay: -2s;
}

.dish-sheet-demo {
  position: absolute;
  z-index: 4;
  right: -34px;
  bottom: 8%;
  width: 260px;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 12px 14px 0 rgba(21, 21, 19, 0.11);
  transform: rotate(-2deg);
}

.dish-sheet-demo span {
  color: var(--coral);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.dish-sheet-demo strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.dish-sheet-demo p {
  margin: 5px 0 15px;
  color: var(--muted);
  font-size: 9px;
}

.dish-sheet-demo b {
  font-family: var(--display);
  font-size: 15px;
}

.management-section {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background: #ebe8e0;
}

.management-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 240px;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--coral);
  content: "";
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.management-heading {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.management-heading h2 {
  margin-top: 20px;
}

.management-heading > p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.management-stage {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
  margin-top: 74px;
}

.management-screen {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 20px 24px 0 rgba(21, 21, 19, 0.11), var(--shadow);
}

.mock-browser-bar {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  min-height: 45px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 9px;
}

.mock-browser-bar__dots {
  display: flex;
  gap: 6px;
}

.mock-browser-bar__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.mock-browser-bar__dots i:first-child {
  background: var(--coral);
}

.mock-browser-bar > strong {
  justify-self: center;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 800;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.management-screen img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  object-position: top left;
}

.management-notes {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.management-notes article {
  padding: 15px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--surface);
  box-shadow: 7px 7px 0 rgba(21, 21, 19, 0.08);
  transition: transform 200ms ease, background 200ms ease;
}

.management-notes article:hover {
  background: var(--lime);
  transform: translateY(-4px);
}

.management-notes i {
  color: var(--coral);
  font-family: var(--display);
  font-size: 8px;
  font-style: normal;
}

.management-notes strong,
.management-notes span {
  display: block;
}

.management-notes strong {
  margin-top: 9px;
  font-size: 11px;
}

.management-notes span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.management-notes--left {
  margin-right: -48px;
}

.management-notes--right {
  margin-left: -48px;
}

.management-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
}

.management-actions p,
.demo-note {
  color: var(--muted);
  font-size: 10px;
}

.analytics-section {
  border-top: 1px solid var(--ink);
  background: var(--surface);
}

.analytics-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  align-items: end;
}

.analytics-heading h2 {
  max-width: 860px;
  margin-top: 20px;
}

.analytics-heading > p {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 16px;
}

.analytics-dashboard {
  margin-top: 70px;
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #f4f5f7;
  box-shadow: 20px 22px 0 rgba(21, 21, 19, 0.09);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 4px 18px;
}

.dashboard-topbar > div:first-child,
.dashboard-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-topbar strong {
  font-size: 17px;
}

.dashboard-topbar span {
  color: var(--muted);
  font-size: 10px;
}

.dashboard-filter > span {
  padding: 8px 10px;
  border: 1px solid #d9dde5;
  border-radius: 4px;
  background: #fff;
}

.dashboard-filter > b {
  padding: 7px 9px;
  background: var(--lime);
  font-size: 8px;
}

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

.metric-grid article,
.dashboard-card {
  border: 1px solid #d9dde5;
  border-radius: 6px;
  background: #fff;
}

.metric-grid article {
  min-height: 130px;
  padding: 18px;
}

.metric-grid span,
.dashboard-card header span {
  color: #747986;
  font-size: 9px;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 17px 0 4px;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
}

.metric-grid small {
  color: #747986;
  font-size: 8px;
}

.dashboard-main,
.dashboard-bottom {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-main {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
}

.dashboard-bottom {
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
}

.dashboard-card {
  padding: 18px;
}

.dashboard-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.dashboard-card > header > div {
  display: flex;
  flex-direction: column;
}

.dashboard-card header strong {
  margin-top: 3px;
  font-size: 14px;
}

.activity-card > header > b {
  color: var(--green);
  font-size: 8px;
}

.activity-chart {
  position: relative;
  height: 250px;
  margin-top: 20px;
}

.chart-lines {
  position: absolute;
  inset: 0 0 32px;
  background: repeating-linear-gradient(180deg, #e9ebef 0 1px, transparent 1px 49px);
}

.activity-columns {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.activity-columns > div {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 19px 16px;
  justify-items: center;
  gap: 1px;
  min-width: 0;
}

.activity-columns i {
  align-self: end;
  width: min(34px, 68%);
  height: 0;
  border-radius: 3px 3px 0 0;
  background: var(--violet);
  transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.analytics-dashboard.is-animated .activity-columns i {
  height: var(--value);
}

.activity-columns .is-peak i {
  background: var(--coral);
}

.activity-columns span,
.activity-columns b {
  font-size: 8px;
}

.activity-columns span {
  color: #747986;
}

.insight-card > header > b {
  padding: 4px 6px;
  background: var(--lime);
  font-size: 7px;
}

.insight-card ol {
  margin-top: 15px;
}

.insight-card li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid #e6e8ed;
}

.insight-card li > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 8px;
  font-style: normal;
}

.insight-card li:first-child > i {
  color: var(--ink);
  background: var(--lime);
}

.insight-card li:last-child > i {
  background: var(--coral);
}

.insight-card p {
  display: flex;
  flex-direction: column;
}

.insight-card p strong {
  font-size: 9px;
  line-height: 1.4;
}

.insight-card p span {
  margin-top: 4px;
  color: #747986;
  font-size: 8px;
}

.dish-interest__row {
  display: grid;
  grid-template-columns: 25px minmax(140px, 0.8fr) minmax(120px, 1fr) 35px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border-top: 1px solid #e6e8ed;
  font-size: 9px;
}

.dish-interest__row:first-of-type {
  margin-top: 12px;
}

.dish-interest__row > span {
  color: #747986;
  font-size: 8px;
}

.dish-interest__row > i {
  height: 5px;
  overflow: hidden;
  background: #eceef2;
}

.dish-interest__row > i b {
  display: block;
  width: 0;
  height: 100%;
  background: var(--violet);
  transition: width 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.analytics-dashboard.is-animated .dish-interest__row > i b {
  width: var(--w);
}

.dish-interest__row:nth-of-type(3) > i b {
  background: var(--coral);
}

.dish-interest__row em {
  justify-self: end;
  font-style: normal;
  font-weight: 800;
}

.heatmap {
  display: grid;
  grid-template-columns: 25px repeat(4, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: 25px;
}

.heatmap b,
.heatmap strong {
  color: #747986;
  font-size: 7px;
}

.heatmap b {
  justify-self: center;
}

.heatmap i {
  aspect-ratio: 1.7;
  border-radius: 3px;
  background: rgba(118, 92, 255, var(--a));
  transform: scale(0.5);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease;
}

.audience-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  padding: 0;
  overflow: hidden;
}

.audience-strip > div {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-right: 1px solid #e6e8ed;
}

.audience-strip > div:last-of-type {
  border-right: 0;
}

.audience-strip span {
  margin-right: auto;
  color: #747986;
  font-size: 8px;
  font-weight: 700;
}

.audience-strip strong {
  font-size: 10px;
}

.audience-strip b {
  color: #747986;
  font-size: 8px;
}

.audience-strip > small {
  position: absolute;
  top: 5px;
  right: 6px;
  color: var(--coral);
  font-size: 6px;
  font-weight: 800;
}

.analytics-dashboard.is-animated .heatmap i {
  transform: scale(1);
  opacity: 1;
}

.demo-note {
  margin-top: 24px;
  text-align: center;
}

.sources-section {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background: var(--lime);
}

.sources-section::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.sources-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 8vw, 116px);
  align-items: center;
}

.sources-copy h2 {
  margin-top: 20px;
}

.sources-copy > .section-text {
  margin-top: 25px;
  color: #4c4c45;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.source-tags li {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.38);
  font-size: 9px;
  font-weight: 800;
}

.source-clarification {
  margin-top: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--coral);
  font-size: 10px;
  font-weight: 700;
}

.sources-console {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 20px 22px 0 rgba(21, 21, 19, 0.13);
  transform: rotate(1deg);
}

.sources-console > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px;
  border-bottom: 1px solid var(--line-dark);
}

.sources-console > header > div {
  display: flex;
  flex-direction: column;
}

.sources-console > header span {
  font-size: 14px;
  font-weight: 800;
}

.sources-console > header strong {
  color: var(--green);
  font-size: 8px;
}

.sources-console > header button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-size: 8px;
  font-weight: 800;
}

.sources-console > header button:disabled {
  cursor: default;
  opacity: 0.72;
}

.source-featured {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 16px;
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--paper);
}

.qr-demo {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 11px solid #fff;
  background:
    repeating-conic-gradient(var(--ink) 0 25%, transparent 0 50%) 50% / 18px 18px;
  box-shadow: 0 0 0 1px var(--ink);
}

.qr-demo::before,
.qr-demo::after {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 8px double #fff;
  background: var(--ink);
  content: "";
}

.qr-demo::before {
  top: 0;
  left: 0;
}

.qr-demo::after {
  right: 0;
  bottom: 0;
}

.qr-demo span {
  position: relative;
  z-index: 2;
  padding: 4px 6px;
  color: var(--ink);
  background: var(--lime);
  font-size: 7px;
  font-weight: 900;
}

.source-featured > div:last-child {
  min-width: 0;
}

.source-featured small {
  color: var(--coral);
  font-size: 7px;
  font-weight: 800;
}

.source-featured h3 {
  margin-top: 7px;
  font-size: 22px;
}

.source-featured p {
  margin: 7px 0 20px;
  color: var(--muted);
  font-size: 9px;
}

.source-featured > div:last-child > strong {
  font-family: var(--display);
  font-size: 26px;
}

.source-featured > div:last-child > strong span {
  color: var(--muted);
  font-family: var(--body);
  font-size: 8px;
}

.source-list {
  margin: 0 16px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
}

.source-list article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 18px;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-dark);
  transform: translateX(20px);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease, background 160ms ease;
}

.sources-console.is-animated .source-list article {
  transform: translateX(0);
  opacity: 1;
}

.sources-console.is-animated .source-list article:nth-child(2) {
  transition-delay: 90ms;
}

.sources-console.is-animated .source-list article:nth-child(3) {
  transition-delay: 180ms;
}

.source-list article:last-child {
  border-bottom: 0;
}

.source-list article:hover {
  background: #f5f2eb;
}

.source-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--violet);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.source-list article:nth-child(2) .source-icon {
  background: var(--coral);
}

.source-list article:nth-child(3) .source-icon {
  color: var(--ink);
  background: var(--lime);
}

.source-list article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.source-list article strong {
  font-size: 10px;
}

.source-list article span {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-list article > b {
  font-size: 11px;
  white-space: nowrap;
}

.source-list article > b small {
  color: var(--muted);
  font-size: 7px;
}

.source-list article > em {
  font-style: normal;
}

.sources-console > footer {
  padding: 0 16px 13px;
  color: var(--muted);
  font-size: 7px;
  text-align: right;
}

.venues-section {
  border-top: 1px solid var(--ink);
  background: var(--surface);
}

.venues-heading {
  max-width: 960px;
}

.venues-heading h2 {
  margin-top: 20px;
}

.venue-tabs {
  margin-top: 65px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.venue-tablist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ink);
}

.venue-tablist button {
  min-height: 66px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.venue-tablist button:last-child {
  border-right: 0;
}

.venue-tablist button[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
}

.venue-tablist button:hover:not([aria-selected="true"]) {
  background: var(--lime);
}

.venue-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: center;
  min-height: 390px;
  padding: 54px;
  animation: panel-in 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.venue-panel[hidden] {
  display: none;
}

.venue-panel > div > span {
  color: var(--coral);
  font-family: var(--display);
  font-size: 9px;
}

.venue-panel h3 {
  max-width: 760px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
}

.venue-panel p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.venue-panel ul {
  border-top: 1px solid var(--line-dark);
}

.venue-panel li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
}

.venue-panel li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "+";
}

.process-section {
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.process-heading h2 {
  max-width: 880px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
  border: 1px solid var(--ink);
}

.process-list li {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--ink);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-size: 9px;
}

.process-list div {
  margin-top: 100px;
}

.process-list strong {
  display: block;
  font-size: 14px;
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.pricing-section {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background: var(--surface);
}

.pricing-section::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.pricing-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(410px, 0.96fr);
  gap: 32px clamp(48px, 8vw, 120px);
  align-items: start;
}

.pricing-copy {
  padding-top: 35px;
}

.pricing-copy h2 {
  margin-top: 20px;
}

.pricing-copy > p:last-child {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.price-card {
  grid-row: span 2;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 20px 22px 0 var(--ink);
}

.price-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.price-card header span {
  font-family: var(--display);
  font-size: 8px;
}

.price-card header b {
  max-width: 230px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  text-align: right;
}

.price-main {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 35px;
}

.price-main strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.price-main span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.billing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.billing-option {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--surface);
}

.billing-option > span {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.billing-option > span b {
  padding: 4px 6px;
  color: var(--ink);
  background: var(--lime);
  font-size: 7px;
  white-space: nowrap;
}

.billing-option > strong {
  display: block;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.1;
  white-space: nowrap;
}

.billing-option > strong small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
}

.billing-option > p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 8px;
}

.billing-option--annual {
  color: #fff;
  background: var(--ink);
}

.billing-option--annual > span,
.billing-option--annual > strong small,
.billing-option--annual > p {
  color: rgba(255, 255, 255, 0.62);
}

.billing-option--annual > p b {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
}

.minimum {
  margin-top: 17px;
  padding: 12px 14px;
  border-left: 4px solid var(--coral);
  background: var(--surface);
  font-size: 11px;
}

.price-card ul {
  margin: 27px 0;
  border-top: 1px solid var(--line-dark);
}

.price-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
}

.price-card li b {
  color: var(--green);
  font-size: 8px;
}

.price-card .button {
  width: 100%;
}

.extras {
  align-self: end;
}

.extras > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.extras article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.extras article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.extras strong {
  font-size: 11px;
  white-space: nowrap;
}

.final-section {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
}

.final-section::before,
.final-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.final-section::before {
  top: -260px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: var(--coral);
}

.final-section::after {
  bottom: -220px;
  left: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.final-inner {
  position: relative;
  z-index: 1;
}

.final-inner .section-label {
  color: rgba(255, 255, 255, 0.58);
}

.final-inner h2 {
  max-width: 1020px;
  margin-top: 22px;
}

.final-inner > p:not(.section-label) {
  max-width: 700px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
}

.final-section .button--paper {
  color: var(--ink);
}

.final-whatsapp {
  margin-left: 14px;
  padding: 10px 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.final-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 90px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.final-meta span {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.final-meta b {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 600;
}

.site-footer {
  padding: 45px 0 max(45px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: var(--ink);
}

.site-footer .shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.wordmark--footer {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 9px;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--coral);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1), transform 760ms var(--delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1180px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

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

  .phone-window {
    width: 242px;
  }

  .phone-window img {
    height: 462px;
  }

  .hero-analytics {
    width: 272px;
  }

  .management-stage {
    grid-template-columns: 150px minmax(0, 1fr) 150px;
  }

  .management-notes--left {
    margin-right: -58px;
  }

  .management-notes--right {
    margin-left: -58px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions > .text-action {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    grid-column: 3;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 5px;
    background: transparent;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle b {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 67px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    visibility: hidden;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    opacity: 0;
    transition: max-height 300ms ease, padding 300ms ease, opacity 200ms ease, visibility 200ms;
  }

  .mobile-nav.is-open {
    max-height: calc(100svh - 67px);
    padding-top: 20px;
    padding-bottom: 24px;
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 14px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 74px;
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero-stage {
    width: min(100%, 760px);
    min-height: 660px;
    margin: 0 auto;
  }

  .guest-layout {
    grid-template-columns: 1fr 420px;
    gap: 55px;
  }

  .management-stage {
    grid-template-columns: 1fr;
  }

  .management-screen {
    grid-row: 1;
  }

  .management-notes {
    grid-template-columns: repeat(3, 1fr);
  }

  .management-notes--left,
  .management-notes--right {
    margin: 0;
  }

  .analytics-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .analytics-heading > p {
    max-width: 720px;
  }

  .dashboard-main,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .audience-strip {
    grid-template-columns: 1fr;
  }

  .audience-strip > div {
    border-right: 0;
    border-bottom: 1px solid #e6e8ed;
  }

  .audience-strip > div:last-of-type {
    border-bottom: 0;
  }

  .sources-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1.22fr);
    gap: 45px;
  }

  .process-heading {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 820px) {
  .site-header .button--compact {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .split-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-rail {
    grid-template-columns: 1fr;
  }

  .product-rail article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .product-rail article:last-child {
    border-bottom: 0;
  }

  .product-rail strong {
    margin-top: 24px;
  }

  .guest-layout {
    grid-template-columns: 1fr;
  }

  .guest-copy {
    max-width: 700px;
  }

  .guest-visual {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .management-section::before {
    width: 50%;
    height: 190px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sources-layout {
    grid-template-columns: 1fr;
  }

  .sources-copy {
    max-width: 720px;
  }

  .sources-console {
    width: min(100%, 660px);
    margin: 0 auto;
  }

  .venue-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .price-card {
    grid-row: auto;
  }

  .extras {
    grid-row: 3;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 84px 0;
  }

  .site-header {
    min-height: 62px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 28px;
    height: 28px;
    padding: 0 5px;
    font-size: 9px;
  }

  .wordmark {
    font-size: 15px;
  }

  .mobile-nav {
    top: 61px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero::before {
    inset: 62px 0 0;
    background-size: 36px 36px;
  }

  .hero__grid {
    gap: 38px;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.2vw, 58px);
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__buttons {
    align-items: stretch;
  }

  .hero__buttons .button {
    width: 100%;
  }

  .hero__whatsapp {
    width: fit-content;
    margin: 6px 0 0;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero__facts li {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 11px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-stage {
    width: calc(100% + 4px);
    min-height: 470px;
    margin-left: -2px;
  }

  .stage-grid {
    inset: 5% -8% -5% 0;
  }

  .stage-stamp {
    top: 4px;
    right: -4px;
    width: 58px;
    height: 58px;
    font-size: 6px;
  }

  .window-bar {
    grid-template-columns: 50px 1fr auto;
    min-height: 31px;
    padding: 0 7px;
    font-size: 6px;
  }

  .window-dots i {
    width: 5px;
    height: 5px;
  }

  .window-bar > b {
    font-size: 5px;
  }

  .phone-window {
    top: auto;
    bottom: 0;
    left: 18px;
    width: 172px;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 10px 12px 0 rgba(21, 21, 19, 0.11);
  }

  .phone-window header {
    height: 17px;
    padding: 0 5px;
    font-size: 5px;
  }

  .phone-window img {
    height: 335px;
    border-radius: 11px;
  }

  .hero-analytics {
    right: -4px;
    bottom: 17px;
    width: 178px;
    padding: 10px;
    box-shadow: 9px 10px 0 rgba(21, 21, 19, 0.1);
  }

  .hero-analytics > strong {
    font-size: 16px;
  }

  .mini-chart {
    height: 40px;
    gap: 3px;
    margin: 7px 0 5px;
  }

  .hero-source {
    top: 9px;
    left: -3px;
    grid-template-columns: 32px 1fr;
    width: 150px;
    padding: 7px;
  }

  .qr-mini {
    width: 32px;
    height: 32px;
    border-width: 3px;
    background-size: 7px 7px;
  }

  .hero-source strong {
    font-size: 7px;
  }

  .hero-source span,
  .hero-source small,
  .mini-card-head,
  .hero-analytics > p {
    font-size: 5px;
  }

  .hero-ticker > div {
    min-height: 43px;
  }

  .product-rail article {
    padding: 22px 4px;
  }

  .guest-visual {
    min-height: 600px;
  }

  .guest-visual::before {
    width: 520px;
    max-width: 138vw;
  }

  .large-phone {
    width: 250px;
    border-radius: 32px;
    box-shadow: 12px 15px 0 rgba(21, 21, 19, 0.12), var(--shadow);
  }

  .large-phone img {
    height: 510px;
    border-radius: 23px;
  }

  .guest-orbit {
    width: 72px;
    height: 72px;
    font-size: 6px;
  }

  .guest-orbit--one {
    top: 8%;
    left: -3px;
  }

  .guest-orbit--two {
    right: -2px;
    bottom: 19%;
  }

  .dish-sheet-demo {
    right: -8px;
    bottom: 4%;
    width: 190px;
    padding: 13px;
  }

  .management-section::before {
    top: 0;
    width: 62%;
    height: 125px;
    opacity: 0.28;
  }

  .management-heading > p:last-child {
    font-size: 15px;
  }

  .management-stage {
    margin-top: 45px;
  }

  .mock-browser-bar {
    grid-template-columns: 54px 1fr auto;
    min-height: 34px;
    padding: 0 7px;
    font-size: 6px;
  }

  .mock-browser-bar__dots i {
    width: 5px;
    height: 5px;
  }

  .management-screen {
    width: 100%;
    margin-left: 0;
    box-shadow: 10px 12px 0 rgba(21, 21, 19, 0.1);
  }

  .management-screen img {
    width: 158%;
    max-width: none;
  }

  .management-notes {
    grid-template-columns: 1fr;
  }

  .management-notes article {
    box-shadow: none;
  }

  .management-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .analytics-dashboard {
    width: calc(100% + 4px);
    margin-top: 46px;
    margin-left: -2px;
    padding: 8px;
    box-shadow: 9px 10px 0 rgba(21, 21, 19, 0.08);
  }

  .dashboard-topbar {
    align-items: flex-start;
    padding: 5px 4px 12px;
  }

  .dashboard-topbar > div:first-child,
  .dashboard-filter {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .dashboard-filter {
    align-items: flex-end;
  }

  .dashboard-filter > span {
    display: none;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .metric-grid article {
    min-height: 104px;
    padding: 12px;
  }

  .metric-grid strong {
    margin-top: 13px;
    font-size: 20px;
  }

  .dashboard-main,
  .dashboard-bottom {
    gap: 6px;
    margin-top: 6px;
  }

  .dashboard-card {
    padding: 12px;
  }

  .activity-chart {
    height: 190px;
  }

  .activity-columns {
    gap: 4px;
  }

  .activity-columns i {
    width: 54%;
  }

  .dish-interest__row {
    grid-template-columns: 20px minmax(105px, 1fr) 35px;
    gap: 5px;
  }

  .audience-strip {
    margin-top: 6px;
  }

  .audience-strip > div {
    min-height: 58px;
    padding: 11px 12px;
  }

  .dish-interest__row > i {
    display: none;
  }

  .source-featured {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 15px;
    margin: 10px;
    padding: 13px;
  }

  .qr-demo {
    width: 105px;
    height: 105px;
    border-width: 8px;
    background-size: 13px 13px;
  }

  .source-featured h3 {
    font-size: 17px;
  }

  .source-featured > div:last-child > strong {
    font-size: 18px;
  }

  .source-list {
    margin: 0 10px 10px;
  }

  .source-list article {
    grid-template-columns: 31px minmax(0, 1fr) auto;
    padding: 8px;
  }

  .source-list article > em {
    display: none;
  }

  .source-list article > b small {
    display: none;
  }

  .venue-tablist {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-tablist button:nth-child(2) {
    border-right: 0;
  }

  .venue-tablist button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .venue-panel {
    min-height: 480px;
    padding: 30px 16px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list div {
    margin-top: 55px;
  }

  .price-card {
    padding: 22px 16px;
    box-shadow: 10px 12px 0 var(--ink);
  }

  .billing-options {
    grid-template-columns: 1fr;
  }

  .billing-option > strong {
    font-size: 24px;
  }

  .price-card header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-card header b {
    text-align: left;
  }

  .price-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-main strong {
    font-size: 32px;
  }

  .price-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .extras article {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .final-whatsapp {
    width: fit-content;
    margin: 7px 0 0;
  }

  .final-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 65px;
  }

  .site-footer .shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-stage {
    min-height: 445px;
  }

  .phone-window {
    width: 156px;
  }

  .phone-window img {
    height: 302px;
  }

  .hero-analytics {
    width: 164px;
  }

  .large-phone {
    width: 232px;
  }

  .large-phone img {
    height: 470px;
  }

  .source-featured {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .qr-demo {
    width: 88px;
    height: 88px;
  }
}

@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typewriter-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes stage-arrive {
  from {
    opacity: 0;
    transform: translateX(48px) rotateY(-4deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes stage-loop {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-8px, -5px, 0) rotate(2deg);
  }
}

@keyframes phone-window-loop {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3.5deg);
  }
  50% {
    transform: translate3d(12px, -15px, 0) rotate(-1.5deg);
  }
}

@keyframes analytics-window-loop {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(-10px, -12px, 0) rotate(4deg);
  }
}

@keyframes source-window-loop {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2.5deg);
  }
  50% {
    transform: translate3d(9px, 10px, 0) rotate(0deg);
  }
}

@keyframes mini-bar-loop {
  0%, 100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes grow-bar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .mini-chart i {
    transform: none !important;
  }

  .activity-columns i {
    height: var(--value);
  }

  .dish-interest__row > i b {
    width: var(--w);
  }

  .heatmap i,
  .source-list article {
    opacity: 1;
    transform: none;
  }
}
