@charset "UTF-8";

:root {
  --ink: #14231f;
  --ink-soft: #354640;
  --paper: #f4f3ed;
  --paper-deep: #e9e9df;
  --white: #ffffff;
  --lime: #a7df61;
  --lime-bright: #b9f06f;
  --brand: #70b646;
  --gold: #f2c66d;
  --line: rgba(20, 35, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #6e7974;
  --shadow: 0 28px 90px rgba(20, 35, 31, 0.13);
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  background: var(--brand);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow-light > span {
  background: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

.button span,
.text-link span,
.footer-mail span {
  transition: transform 0.25s ease;
}

.button:hover span,
.text-link:hover span,
.footer-mail:hover span {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(20, 35, 31, 0.18);
}

.button-primary:hover {
  background: #243a33;
}

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

.button-lime:hover {
  background: var(--lime-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 10px 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 800;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 243, 237, 0.91);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
}

.brand {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 143px;
  height: auto;
}

.brand > span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
}

.nav-toggle {
  z-index: 5;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

/* Hero */
.ticket-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 156px 0 30px;
}

.hero-glow {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 860px;
  height: 860px;
  background: radial-gradient(circle, rgba(167, 223, 97, 0.28) 0, rgba(167, 223, 97, 0.08) 38%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 66px;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4.2rem, 6.6vw, 6.9rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-copy h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  padding: 15px 12px 0 0;
}

.hero-facts li + li {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 0.67rem;
  font-weight: 800;
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.45;
}

.hero-facts .fact-highlight strong {
  color: var(--brand);
}

.product-stage {
  position: relative;
  min-width: 0;
  height: 610px;
  border: 1px solid rgba(20, 35, 31, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(20, 35, 31, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 35, 31, 0.075) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(135deg, #000 10%, transparent 92%);
  mask-image: linear-gradient(135deg, #000 10%, transparent 92%);
}

.admin-window {
  position: absolute;
  top: 62px;
  right: 34px;
  left: 28px;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 31, 0.14);
  border-radius: 20px;
  background: #fbfbf8;
  box-shadow: 0 28px 65px rgba(20, 35, 31, 0.14);
  animation: windowFloat 6s ease-in-out infinite;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 0.55rem;
  font-weight: 800;
}

.window-mark {
  color: var(--ink-soft);
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.window-status i {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(112, 182, 70, 0.12);
}

.admin-layout {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 365px;
}

.admin-layout aside {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 17px 10px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink);
}

.admin-layout aside strong {
  margin: 0 7px 12px;
  color: var(--lime);
  font-size: 0.51rem;
  text-transform: uppercase;
}

.admin-layout aside span {
  padding: 8px 9px;
  border-radius: 7px;
  font-size: 0.49rem;
  font-weight: 700;
}

.admin-layout aside .is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.admin-content {
  min-width: 0;
  padding: 20px 20px 18px;
}

.event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-head small,
.event-head strong {
  display: block;
}

.event-head small {
  color: var(--muted);
  font-size: 0.51rem;
}

.event-head strong {
  margin-top: 2px;
  font-size: 0.84rem;
}

.event-head > span {
  padding: 5px 9px;
  color: #28552f;
  background: rgba(167, 223, 97, 0.22);
  border-radius: 100px;
  font-size: 0.47rem;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 17px;
}

.metric-row > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.metric-row small,
.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row small {
  color: var(--muted);
  font-size: 0.43rem;
}

.metric-row strong {
  margin: 3px 0;
  font-size: 0.7rem;
}

.metric-row span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sales-chart {
  position: relative;
  height: 186px;
  margin-top: 12px;
  overflow: hidden;
  padding: 12px 12px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(rgba(20, 35, 31, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 100% 34px;
}

.chart-title {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-size: 0.43rem;
}

.chart-title span {
  color: var(--muted);
}

.chart-bars {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 130px;
}

.chart-bars i {
  flex: 1;
  height: 45%;
  min-width: 6px;
  background: rgba(20, 35, 31, 0.1);
  border-radius: 4px 4px 0 0;
}

.chart-bars i:nth-child(1) { height: 28%; }
.chart-bars i:nth-child(2) { height: 43%; }
.chart-bars i:nth-child(3) { height: 37%; }
.chart-bars i:nth-child(4) { height: 58%; }
.chart-bars i:nth-child(5) { height: 68%; }
.chart-bars i:nth-child(6) { height: 62%; }
.chart-bars i:nth-child(7) {
  height: 88%;
  background: rgba(167, 223, 97, 0.3);
}

.chart-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shop-phone {
  position: absolute;
  right: -20px;
  bottom: 22px;
  z-index: 5;
  width: 190px;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 27px;
  background: var(--white);
  box-shadow: 0 28px 62px rgba(20, 35, 31, 0.24);
  transform: rotate(2deg);
  animation: phoneFloat 6s 0.6s ease-in-out infinite;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  padding: 0 11px;
  font-size: 0.48rem;
  font-weight: 800;
}

.phone-top i {
  width: 14px;
  height: 8px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.phone-image {
  display: grid;
  min-height: 112px;
  padding: 15px;
  align-content: end;
  color: var(--white);
  background:
    linear-gradient(150deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 32% 33%, transparent 33%),
    linear-gradient(145deg, #203c34, #70b646);
}

.phone-image small,
.phone-image strong {
  display: block;
}

.phone-image small {
  color: var(--lime);
  font-size: 0.43rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-image strong {
  margin-top: 4px;
  font-size: 0.9rem;
}

.phone-content {
  padding: 13px;
}

.phone-content > span {
  color: var(--muted);
  font-size: 0.43rem;
}

.phone-content > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 0.52rem;
}

.phone-content button {
  width: 100%;
  padding: 9px;
  border: 0;
  border-radius: 100px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.47rem;
  font-weight: 800;
}

.stage-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(20, 35, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(20, 35, 31, 0.13);
  font-size: 0.48rem;
}

.stage-note span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 800;
}

.note-ticket {
  bottom: 49px;
  left: 9px;
  animation: noteFloat 5s 0.8s ease-in-out infinite;
}

.note-payment {
  top: 25px;
  right: 34px;
  animation: noteFloat 5s ease-in-out infinite;
}

.audience-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 32px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.audience-line span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

/* Shared headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.58fr);
  column-gap: 72px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.tour-intro h2,
.everyday-copy h2,
.pricing-heading h2,
.faq-heading h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading h2 em,
.tour-intro h2 em,
.everyday-copy h2 em,
.pricing-heading h2 em,
.faq-heading h2 em,
.contact-inner h2 em {
  color: var(--brand);
  font-style: normal;
}

.section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* Process */
.process-section {
  background: var(--white);
}

.process-line {
  --process-gap: 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: var(--process-gap);
}

.process-line article {
  position: relative;
  min-width: 0;
  padding: 21px 18px 22px 0;
}

.process-line article:not(:last-child)::after {
  position: absolute;
  top: 37.5px;
  left: 34px;
  z-index: 0;
  width: calc(100% - 34px + var(--process-gap));
  height: 1px;
  background: linear-gradient(90deg, var(--line) 0 38%, var(--brand) 48% 55%, var(--line) 65% 100%);
  background-size: 220% 100%;
  content: "";
  animation: processFlow 3.2s linear infinite;
}

.process-line article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--brand);
  background: rgba(112, 182, 70, 0.1);
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 800;
}

.process-line article > small {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-line h3 {
  min-height: 70px;
  margin: 10px 0 14px;
  font-size: 1.23rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

/* Product tour */
.product-tour {
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 56px;
  color: var(--white);
  background: var(--ink);
}

.tour-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.tour-intro h2 {
  max-width: 780px;
}

.tour-intro h2 em {
  color: var(--lime);
}

.tour-scroll {
  height: 320svh;
  margin-top: 50px;
}

.tour-sticky {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  height: calc(100svh - 116px);
  min-height: 540px;
  max-height: 760px;
}

.tour-rail {
  display: grid;
  align-content: center;
}

.tour-rail button {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 13px;
  min-height: 112px;
  padding: 18px 0;
  text-align: left;
  border: 0;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  cursor: pointer;
  transition: color 0.35s ease;
}

.tour-rail button:not(:last-child)::after {
  position: absolute;
  top: 60px;
  bottom: -18px;
  left: 14.5px;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.tour-rail button > span {
  position: relative;
  z-index: 1;
  display: grid;
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--ink);
  font-size: 0.51rem;
  font-weight: 800;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.tour-rail button > strong {
  align-self: end;
  font-size: 0.71rem;
  line-height: 1.25;
}

.tour-rail button > small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.52rem;
  line-height: 1.35;
  transition: color 0.35s ease;
}

.tour-rail button:hover,
.tour-rail button.is-active {
  color: var(--white);
}

.tour-rail button.is-active > span {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  transform: scale(1.08);
}

.tour-rail button.is-active > small {
  color: rgba(255, 255, 255, 0.66);
}

.tour-panels {
  position: relative;
  height: min(620px, calc(100svh - 132px));
  min-height: 520px;
}

.tour-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.48s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.48s;
  pointer-events: none;
}

.tour-panel.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.tour-copy > span {
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-copy h3 {
  margin: 19px 0;
  font-size: clamp(2rem, 3.25vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.tour-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.tour-copy ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.tour-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 700;
}

.tour-copy li::before,
.pricing-grid li::before,
.use-card li::before {
  margin-right: 9px;
  color: var(--lime);
  content: "✓";
  font-weight: 800;
}

.tour-ui {
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.admin-demo {
  color: var(--ink);
}

.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
}

.demo-top strong {
  color: var(--brand);
  font-size: 0.52rem;
}

.demo-form {
  display: grid;
  gap: 13px;
  padding: 30px;
}

.demo-form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-form label strong {
  min-height: 48px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.68rem;
  text-transform: none;
}

.demo-form label strong i {
  float: right;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.demo-actions {
  display: flex;
  justify-content: end;
  gap: 9px;
  padding: 0 30px 26px;
  font-size: 0.59rem;
  font-weight: 800;
}

.demo-actions span,
.demo-actions strong {
  padding: 9px 14px;
  border-radius: 100px;
}

.demo-actions span {
  border: 1px solid var(--line);
  background: var(--white);
}

.demo-actions strong {
  color: var(--ink);
  background: var(--lime);
}

.shop-demo {
  color: var(--ink);
  background: var(--white);
}

.shop-demo-brand {
  display: flex;
  justify-content: space-between;
  padding: 17px 22px;
  font-size: 0.65rem;
  font-weight: 800;
}

.shop-demo-brand span {
  color: var(--muted);
  font-size: 0.54rem;
}

.shop-demo-hero {
  min-height: 174px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(20, 35, 31, 0.25), transparent 60%),
    linear-gradient(135deg, #28493f, #70b646);
}

.shop-demo-hero small,
.shop-demo-hero strong {
  display: block;
}

.shop-demo-hero small {
  color: var(--lime);
  font-size: 0.54rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-demo-hero strong {
  margin-top: 11px;
  font-size: 1.8rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.shop-demo-ticket {
  display: grid;
  grid-template-columns: 1fr auto 28px;
  gap: 18px;
  align-items: center;
  margin: 20px 24px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.shop-demo-ticket small,
.shop-demo-ticket strong {
  display: block;
}

.shop-demo-ticket small {
  color: var(--muted);
  font-size: 0.45rem;
}

.shop-demo-ticket strong,
.shop-demo-ticket b {
  font-size: 0.65rem;
}

.shop-demo-ticket i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.6rem;
  font-style: normal;
}

.shop-demo-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  font-size: 0.58rem;
}

.shop-demo-checkout span strong {
  margin-left: 7px;
  font-size: 0.74rem;
}

.shop-demo-checkout > b {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 100px;
}

.event-demo {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  padding: 23px;
  color: var(--ink);
}

.scan-card,
.event-stats {
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.scan-card > small,
.event-stats > small {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scan-frame {
  position: relative;
  display: grid;
  width: 116px;
  height: 116px;
  margin: 0 auto 17px;
  place-items: center;
  border: 2px solid var(--brand);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(112, 182, 70, 0.12) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(112, 182, 70, 0.12) 50%, transparent 51%);
}

.scan-frame i {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 1px;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  animation: scannerLine 2.2s ease-in-out infinite;
}

.scan-frame span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  font-weight: 800;
}

.scan-card > strong {
  font-size: 0.78rem;
  text-align: center;
}

.scan-card > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.5rem;
  text-align: center;
}

.event-stats > strong {
  display: grid;
  gap: 5px;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
}

.event-stats > strong span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0;
}

.event-stats > div {
  height: 9px;
  margin: 20px 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 100px;
}

.event-stats > div i {
  display: block;
  width: 74%;
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
}

.event-stats > p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 700;
}

/* Possibilities */
.possibilities {
  background: var(--paper);
}

.compact-heading {
  margin-bottom: 62px;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.use-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.use-card > span {
  color: var(--brand);
  font-size: 0.56rem;
  font-weight: 800;
}

.use-visual {
  min-height: 245px;
  margin: 16px 0 25px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--white);
}

.ticket-visual {
  position: relative;
  display: grid;
  padding: 26px;
  align-content: center;
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 68%, rgba(255, 255, 255, 0.12) 68% 69%, transparent 69%),
    linear-gradient(140deg, #203b33, #70b646);
}

.ticket-visual::after {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 68%;
  border-left: 1px dashed rgba(255, 255, 255, 0.45);
  content: "";
}

.ticket-visual small {
  color: var(--lime);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticket-visual strong {
  max-width: 62%;
  margin-top: 9px;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ticket-visual i,
.ticket-visual b {
  position: absolute;
  right: 7%;
  z-index: 2;
}

.ticket-visual i {
  top: 43px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.ticket-visual b {
  bottom: 42px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  font-size: 0.52rem;
}

.workshop-visual {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
}

.workshop-visual > small {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workshop-visual > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line-light);
  border-radius: 9px;
}

.workshop-visual i {
  color: var(--lime);
  font-size: 0.5rem;
  font-style: normal;
}

.workshop-visual strong {
  font-size: 0.62rem;
}

.product-visual {
  display: grid;
  padding: 21px;
  background: #e5e1d3;
}

.product-visual > div {
  display: grid;
  padding: 18px;
  align-content: end;
  border-radius: 12px;
  background: var(--white);
}

.product-visual i {
  display: block;
  width: 72px;
  height: 85px;
  margin: 0 auto 13px;
  background: linear-gradient(145deg, #28483e, #70b646);
  border-radius: 35px 35px 12px 12px;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.product-visual small,
.product-visual strong {
  display: block;
}

.product-visual small {
  color: var(--muted);
  font-size: 0.48rem;
}

.product-visual strong {
  font-size: 0.7rem;
}

.product-visual > b {
  margin-top: 8px;
  padding: 8px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 100px;
  font-size: 0.5rem;
  text-align: center;
}

.use-card h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.use-card > p {
  min-height: 72px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.use-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.use-card li {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
}

.use-card li::before {
  color: var(--brand);
}

/* Everyday */
.everyday-section {
  background: var(--lime);
}

.everyday-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
  gap: clamp(65px, 10vw, 145px);
  align-items: start;
}

.everyday-copy {
  position: sticky;
  top: 130px;
}

.everyday-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.everyday-copy h2 em {
  color: var(--ink);
}

.everyday-copy > p:last-child {
  margin: 28px 0 0;
  color: rgba(20, 35, 31, 0.67);
  font-size: 0.85rem;
}

.everyday-list {
  border-top: 1px solid rgba(20, 35, 31, 0.22);
}

.everyday-list article {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(20, 35, 31, 0.22);
}

.everyday-list span {
  color: rgba(20, 35, 31, 0.6);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.everyday-list strong {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Pricing */
.pricing-section {
  color: var(--white);
  background: var(--ink);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  column-gap: 72px;
  align-items: end;
  margin-bottom: 68px;
}

.pricing-heading .eyebrow {
  grid-column: 1 / -1;
}

.pricing-heading h2 em {
  color: var(--lime);
}

.pricing-heading > p:last-child {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

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

.pricing-grid article {
  display: flex;
  min-height: 430px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-grid article > span {
  color: var(--lime);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-grid h3 {
  margin: 20px 0 13px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.pricing-grid article > p {
  min-height: 82px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.pricing-grid ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.pricing-grid li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 700;
}

.pricing-grid .pricing-highlight {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.pricing-grid .pricing-highlight > span {
  color: rgba(20, 35, 31, 0.58);
}

.pricing-grid .pricing-highlight h3 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.pricing-grid .pricing-highlight > p {
  color: rgba(20, 35, 31, 0.68);
}

.pricing-highlight > strong {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 35, 31, 0.2);
  font-size: 0.82rem;
  line-height: 1.5;
}

.pricing-highlight > small {
  margin-top: 13px;
  color: rgba(20, 35, 31, 0.58);
  font-size: 0.54rem;
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(65px, 11vw, 150px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p {
  margin: 0 0 19px;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4.65vw, 4.9rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-size: 0.87rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.3s ease;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 12px;
  width: 8px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.faq-list summary i::before {
  left: 5px;
  transform: rotate(38deg);
}

.faq-list summary i::after {
  right: 5px;
  transform: rotate(-38deg);
}

.faq-list details[open] summary i {
  color: var(--brand);
  transform: rotate(180deg);
}

.faq-list details > p {
  max-width: 660px;
  margin: -7px 44px 25px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}

/* Contact and footer */
.contact-section {
  padding: 110px 0;
  color: var(--white);
  background: #20352f;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.contact-inner h2 {
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

.contact-inner h2 em {
  color: var(--lime);
}

.contact-inner > div > p:last-child {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.contact-actions {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.contact-actions > a:last-child {
  display: grid;
  gap: 2px;
  padding-left: 4px;
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  font-weight: 700;
}

.contact-actions strong {
  font-size: 0.82rem;
}

.site-footer {
  padding: 68px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 45px;
  align-items: center;
  padding-bottom: 48px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand > span {
  color: rgba(255, 255, 255, 0.6);
  border-color: var(--line-light);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@keyframes phoneFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-8px); }
}

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

@keyframes processFlow {
  from { background-position: 130% 0; }
  to { background-position: -130% 0; }
}

@keyframes processFlowVertical {
  from { background-position: 0 130%; }
  to { background-position: 0 -130%; }
}

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

/* Responsive */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 6.5vw, 5.6rem);
  }

  .shop-phone {
    right: -8px;
  }

  .process-line {
    --process-gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--process-gap);
  }

  .tour-panel {
    grid-template-columns: minmax(0, 0.75fr) minmax(470px, 1.25fr);
    gap: 45px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 94px 0;
  }

  .site-header .shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 76px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    padding: 110px 30px 35px;
    align-content: center;
    justify-items: center;
    gap: 25px;
    background: rgba(244, 243, 237, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a {
    font-size: 1.22rem;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    font-size: 0.88rem;
  }

  .ticket-hero {
    padding: 126px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .hero-copy h1 {
    font-size: clamp(4rem, 12vw, 6.7rem);
  }

  .product-stage {
    width: 100%;
    max-width: 700px;
    height: 600px;
    margin-inline: auto;
  }

  .audience-line {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 55px;
  }

  .audience-line span {
    flex-basis: 100%;
  }

  .section-heading,
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

  .section-heading > p:last-child,
  .pricing-heading > p:last-child {
    max-width: 640px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-line article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .process-line article > span {
    margin-bottom: 28px;
  }

  .process-line h3 {
    min-height: 0;
  }

  .tour-panels,
  .tour-panel {
    min-height: 0;
  }

  .tour-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 46px;
  }

  .tour-copy {
    max-width: 650px;
  }

  .use-cases {
    grid-template-columns: 1fr;
  }

  .use-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: auto auto auto 1fr;
    column-gap: 28px;
  }

  .use-card > span {
    grid-column: 2;
  }

  .use-visual {
    grid-column: 1;
    grid-row: 1 / 5;
    margin: 0;
  }

  .use-card h3,
  .use-card > p,
  .use-card ul {
    grid-column: 2;
  }

  .use-card > p {
    min-height: 0;
  }

  .everyday-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .everyday-copy,
  .faq-heading {
    position: static;
  }

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

  .pricing-grid .pricing-highlight {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .pricing-highlight > strong {
    margin-top: 35px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 76px 0;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 118px;
  }

  .brand > span {
    padding-left: 9px;
    font-size: 0.61rem;
  }

  .ticket-hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    gap: 15px;
    justify-items: start;
    margin-top: 28px;
  }

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

  .hero-facts li,
  .hero-facts li + li {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts span {
    margin: 0;
  }

  .hero-grid {
    gap: 38px;
  }

  .product-stage {
    height: 430px;
    border-radius: 24px;
  }

  .admin-window {
    top: 42px;
    right: 10px;
    left: 10px;
    border-radius: 14px;
  }

  .window-bar {
    height: 34px;
    padding: 0 10px;
  }

  .admin-layout {
    grid-template-columns: 68px 1fr;
    min-height: 274px;
  }

  .admin-layout aside {
    gap: 4px;
    padding: 10px 5px;
  }

  .admin-layout aside strong {
    margin: 0 5px 6px;
    font-size: 0.38rem;
  }

  .admin-layout aside span {
    padding: 5px;
    font-size: 0.36rem;
  }

  .admin-content {
    padding: 11px;
  }

  .event-head small {
    font-size: 0.38rem;
  }

  .event-head strong {
    font-size: 0.6rem;
  }

  .metric-row {
    margin-top: 9px;
  }

  .metric-row > div {
    padding: 6px;
  }

  .metric-row small,
  .metric-row span {
    font-size: 0.31rem;
  }

  .metric-row strong {
    font-size: 0.48rem;
  }

  .sales-chart {
    height: 126px;
    margin-top: 8px;
    padding: 7px;
  }

  .chart-bars {
    right: 7px;
    bottom: 6px;
    left: 7px;
    gap: 5px;
    height: 88px;
  }

  .chart-line {
    right: 11px;
    bottom: 14px;
    left: 11px;
    height: 66px;
  }

  .chart-title {
    font-size: 0.33rem;
  }

  .shop-phone {
    right: -4px;
    bottom: 7px;
    width: 140px;
    border-width: 4px;
    border-radius: 21px;
  }

  .phone-top {
    height: 28px;
    padding: 0 8px;
    font-size: 0.36rem;
  }

  .phone-image {
    min-height: 78px;
    padding: 10px;
  }

  .phone-image small {
    font-size: 0.32rem;
  }

  .phone-image strong {
    font-size: 0.65rem;
  }

  .phone-content {
    padding: 9px;
  }

  .phone-content > span {
    font-size: 0.31rem;
  }

  .phone-content > div {
    margin: 6px 0;
    padding-top: 5px;
    font-size: 0.38rem;
  }

  .phone-content button {
    padding: 6px;
    font-size: 0.34rem;
  }

  .stage-note {
    gap: 5px;
    padding: 5px 7px;
    font-size: 0.35rem;
  }

  .stage-note span {
    width: 17px;
    height: 17px;
  }

  .note-ticket {
    bottom: 18px;
    left: 5px;
  }

  .note-payment {
    top: 13px;
    right: 10px;
  }

  .audience-line {
    gap: 12px 20px;
    margin-top: 38px;
  }

  .audience-line p {
    font-size: 0.65rem;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .tour-intro h2,
  .pricing-heading h2,
  .contact-inner h2 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .section-heading > p:last-child {
    font-size: 0.82rem;
  }

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

  .process-line article {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 2px 14px;
    padding: 16px;
  }

  .process-line article > span {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .process-line article > small,
  .process-line h3,
  .process-line p {
    grid-column: 2;
  }

  .process-line h3 {
    margin: 4px 0 7px;
    font-size: 1.05rem;
  }

  .tour-intro {
    display: block;
  }

  .tour-panel {
    gap: 30px;
    padding-top: 34px;
  }

  .tour-copy h3 {
    font-size: 2rem;
  }

  .tour-copy > p {
    font-size: 0.75rem;
  }

  .tour-ui {
    min-height: 300px;
    border-radius: 18px;
  }

  .demo-top {
    padding: 12px;
  }

  .demo-form {
    gap: 9px;
    padding: 15px;
  }

  .demo-form > div {
    gap: 9px;
  }

  .demo-form label strong {
    min-height: 39px;
    padding: 10px;
    font-size: 0.52rem;
  }

  .demo-form label strong i {
    display: none;
  }

  .demo-actions {
    padding: 0 15px 16px;
  }

  .shop-demo-hero {
    min-height: 130px;
    padding: 22px;
  }

  .shop-demo-ticket {
    margin: 14px;
  }

  .shop-demo-checkout {
    padding: 0 14px;
  }

  .event-demo {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7px;
    padding: 10px;
  }

  .scan-card,
  .event-stats {
    padding: 12px;
  }

  .scan-frame {
    width: 78px;
    height: 78px;
  }

  .scan-frame i {
    animation-name: scannerLineMobile;
  }

  .event-stats > strong {
    font-size: 1.75rem;
  }

  .use-card {
    display: block;
    padding: 14px;
  }

  .use-visual {
    min-height: 220px;
    margin: 12px 0 21px;
  }

  .use-card > p {
    margin-bottom: 13px;
  }

  .everyday-grid,
  .faq-grid {
    gap: 40px;
  }

  .everyday-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
  }

  .everyday-list article {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .pricing-heading {
    gap: 20px;
    margin-bottom: 40px;
  }

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

  .pricing-grid article,
  .pricing-grid .pricing-highlight {
    grid-column: auto;
    min-height: 360px;
    padding: 24px;
  }

  .pricing-grid article > p {
    min-height: 0;
  }

  .faq-list summary {
    padding: 21px 0;
    font-size: 0.76rem;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 0.7rem;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-inner {
    gap: 35px;
  }

  .contact-actions {
    width: 100%;
  }

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

  .site-footer {
    padding-top: 52px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-mail {
    width: fit-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

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

@media (max-width: 860px) {
  .process-line {
    --process-gap: 12px;
    grid-template-columns: 1fr;
    gap: var(--process-gap);
  }

  .process-line article {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 2px 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .process-line article > span {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .process-line article > small,
  .process-line h3,
  .process-line p {
    grid-column: 2;
  }

  .process-line article:not(:last-child)::after {
    top: 48px;
    left: 31.5px;
    width: 1px;
    height: calc(100% - 32px + var(--process-gap));
    background: linear-gradient(180deg, var(--line) 0 38%, var(--brand) 48% 55%, var(--line) 65% 100%);
    background-size: 100% 220%;
    animation-name: processFlowVertical;
  }

  .product-tour {
    padding-bottom: 94px;
  }

  .tour-scroll {
    height: auto;
    margin-top: 42px;
  }

  .tour-sticky {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .tour-rail {
    position: sticky;
    top: 72px;
    z-index: 20;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(20, 35, 31, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
  }

  .tour-rail button {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 8px;
    min-height: 0;
    padding: 9px 8px;
    border-radius: 11px;
  }

  .tour-rail button:not(:last-child)::after,
  .tour-rail button > small {
    display: none;
  }

  .tour-rail button > span {
    grid-row: 1;
    width: 26px;
    height: 26px;
    font-size: 0.46rem;
  }

  .tour-rail button > strong {
    align-self: center;
    overflow: hidden;
    font-size: 0.61rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tour-rail button.is-active {
    background: rgba(255, 255, 255, 0.07);
  }

  .tour-panels {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 32px;
  }

  .tour-panel {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 62px 0 56px;
    border-bottom: 1px solid var(--line-light);
    opacity: 0.38;
    visibility: visible;
    transform: translateY(18px) scale(0.985);
    pointer-events: auto;
  }

  .tour-panel:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .tour-panel.is-active {
    opacity: 1;
    transform: none;
  }

  .tour-copy {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .chart-line {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .tour-rail button {
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 6px;
    padding-inline: 6px;
  }

  .tour-rail button > span {
    width: 24px;
    height: 24px;
  }

  .tour-rail button > strong {
    font-size: 0.53rem;
  }

  .tour-panel {
    gap: 30px;
    padding-top: 52px;
  }
}

/* Mobile clarity refinements */
.mobile-contact-bar {
  display: none;
}

@media (max-width: 860px) {
  .tour-scroll {
    margin-top: 34px;
  }

  .tour-rail {
    position: static;
    top: auto;
    margin-bottom: 26px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: none;
  }

  .tour-panels {
    display: block;
    gap: 0;
  }

  .js .tour-panel {
    display: none;
    padding: 0;
    border-bottom: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .js .tour-panel.is-active {
    display: grid;
  }

  .product-stage {
    display: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 64px 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .ticket-hero {
    overflow-x: clip;
    overflow-y: visible;
    padding-top: 96px;
    padding-bottom: 22px;
  }

  .hero-grid {
    gap: 30px;
    min-height: 0;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
    letter-spacing: 0;
    line-height: 0.96;
  }

  .hero-lead {
    max-width: 34rem;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    gap: 10px;
    padding-inline: 16px;
  }

  .hero-actions .text-link {
    justify-self: center;
  }

  .hero-facts {
    --fact-gap: 10px;
    display: flex;
    gap: var(--fact-gap);
    margin-top: 22px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    border-top: 0;
  }

  .hero-facts li,
  .hero-facts li + li {
    display: grid;
    flex: 0 0 100%;
    min-width: 0;
    min-height: 72px;
    padding: 16px 18px;
    align-content: center;
    justify-content: center;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    text-align: center;
    animation: heroFactCarousel 6s ease-in-out infinite;
    will-change: transform;
  }

  .hero-facts .fact-highlight {
    color: var(--ink);
    border-color: #70b646;
    background: #70b646;
  }

  .hero-facts strong {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.94rem;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .hero-facts .fact-highlight strong {
    color: var(--ink);
  }

  .hero-facts span {
    display: none;
  }

  @media (max-width: 380px) {
    .hero-facts strong {
      font-size: 0.86rem;
    }
  }

  @media (max-width: 340px) {
    .hero-facts strong {
      font-size: 0.78rem;
    }
  }

  .product-stage {
    display: none;
  }

  .admin-window,
  .stage-grid,
  .stage-note {
    display: none;
  }

  .shop-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(240px, 74vw);
    border-width: 6px;
    border-radius: 28px;
    transform: none;
    animation: none;
  }

  .phone-top {
    height: 38px;
    font-size: 0.58rem;
  }

  .phone-image {
    min-height: 126px;
    padding: 16px;
  }

  .phone-image small {
    font-size: 0.48rem;
  }

  .phone-image strong {
    font-size: 1.08rem;
  }

  .phone-content {
    padding: 14px;
  }

  .phone-content > span {
    font-size: 0.54rem;
  }

  .phone-content > div {
    font-size: 0.62rem;
  }

  .phone-content button {
    padding: 10px;
    font-size: 0.58rem;
  }

  .audience-line {
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .audience-line span {
    font-size: 0.58rem;
  }

  .audience-line p {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.48);
    font-size: 0.68rem;
  }

  .section-heading,
  .pricing-heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .tour-intro h2,
  .everyday-copy h2,
  .pricing-heading h2,
  .faq-heading h2,
  .contact-inner h2 {
    font-size: 2.45rem;
    letter-spacing: 0;
    line-height: 1.04;
  }

  .process-line article {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .process-line article > small {
    font-size: 0.6rem;
  }

  .process-line p {
    font-size: 0.76rem;
  }

  .product-tour {
    padding: 66px 0;
  }

  .tour-intro h2 {
    max-width: 18rem;
  }

  .tour-scroll {
    margin-top: 28px;
  }

  .tour-rail {
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
  }

  .tour-rail button {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    justify-items: center;
    padding: 10px 5px;
    text-align: center;
  }

  .tour-rail button > span {
    width: 24px;
    height: 24px;
  }

  .tour-rail button > strong {
    width: 100%;
    font-size: 0.62rem;
    white-space: normal;
  }

  .tour-panel.is-active {
    gap: 22px;
  }

  .tour-copy > span {
    font-size: 0.62rem;
  }

  .tour-copy h3 {
    margin: 12px 0;
    font-size: 1.62rem;
    letter-spacing: 0;
    line-height: 1.12;
  }

  .tour-copy > p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .tour-copy ul {
    margin-top: 18px;
  }

  .tour-copy li {
    font-size: 0.76rem;
  }

  .tour-ui {
    min-height: 0;
    border-radius: 16px;
  }

  .admin-demo,
  .shop-demo,
  .event-demo {
    box-shadow: none;
  }

  .demo-form {
    padding: 16px;
  }

  .demo-form > div {
    grid-template-columns: 1fr;
  }

  .shop-demo-ticket {
    grid-template-columns: 1fr auto;
  }

  .shop-demo-ticket i {
    display: none;
  }

  .event-demo {
    grid-template-columns: 1fr;
  }

  .scan-frame {
    width: 86px;
    height: 86px;
  }

  .possibilities {
    padding-top: 62px;
  }

  .compact-heading {
    margin-bottom: 28px;
  }

  .use-cases {
    gap: 10px;
  }

  .use-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 3px 13px;
    padding: 16px;
    border-radius: 16px;
  }

  .use-card > span {
    display: grid;
    grid-row: 1 / 4;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(167, 223, 97, 0.42);
    font-size: 0.62rem;
  }

  .use-visual {
    display: none;
  }

  .use-card h3,
  .use-card > p,
  .use-card ul {
    grid-column: 2;
  }

  .use-card h3 {
    font-size: 1.08rem;
    letter-spacing: 0;
  }

  .use-card > p {
    margin: 5px 0 9px;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .use-card ul {
    gap: 5px;
    padding-top: 10px;
  }

  .use-card li {
    font-size: 0.72rem;
  }

  .everyday-copy > p:last-child {
    margin-top: 16px;
    font-size: 0.86rem;
  }

  .everyday-list article {
    padding: 17px 0;
  }

  .everyday-list span {
    font-size: 0.62rem;
  }

  .everyday-list strong {
    font-size: 0.86rem;
  }

  .pricing-section {
    padding-top: 66px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .pricing-grid .pricing-highlight {
    order: -1;
  }

  .pricing-grid article,
  .pricing-grid .pricing-highlight {
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .pricing-grid h3,
  .pricing-grid .pricing-highlight h3 {
    margin: 12px 0 8px;
    font-size: 1.65rem;
    letter-spacing: 0;
  }

  .pricing-grid article > p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .pricing-grid ul {
    margin-top: 18px;
    padding-top: 14px;
  }

  .pricing-grid li {
    font-size: 0.72rem;
  }

  .pricing-highlight > strong {
    margin-top: 18px;
    padding-top: 16px;
    font-size: 0.88rem;
  }

  .pricing-highlight > small {
    font-size: 0.65rem;
  }

  .faq-list summary {
    gap: 16px;
    padding: 19px 0;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .faq-list details > p {
    margin-bottom: 22px;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .contact-section {
    padding: 66px 0;
  }

  .contact-inner > div > p:last-child {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 990;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(20, 35, 31, 0.13);
    border-radius: 18px;
    background: rgba(244, 243, 237, 0.94);
    box-shadow: 0 16px 42px rgba(20, 35, 31, 0.18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 13px;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:first-child {
    color: var(--ink);
    background: var(--lime);
  }

  .mobile-contact-bar a:last-child {
    border: 1px solid var(--line);
    background: var(--white);
  }
}

@keyframes heroFactCarousel {
  0%,
  24% {
    transform: translateX(0);
  }

  34%,
  58% {
    transform: translateX(calc(-100% - var(--fact-gap)));
  }

  68%,
  92% {
    transform: translateX(calc(-200% - (var(--fact-gap) * 2)));
  }

  100% {
    transform: translateX(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;
  }

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

  .tour-scroll {
    height: auto;
  }

  .tour-sticky {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .tour-rail {
    display: none;
  }

  .tour-panels {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 72px;
  }

  .tour-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 620px) {
  .hero-facts {
    display: grid;
    overflow: visible;
  }

  .hero-facts li,
  .hero-facts li + li {
    animation: none;
  }
}
