@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./fonts/files/plus-jakarta-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./fonts/files/plus-jakarta-sans-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("./fonts/files/plus-jakarta-sans-latin-800-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./fonts/files/plus-jakarta-sans-latin-ext-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./fonts/files/plus-jakarta-sans-latin-ext-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("./fonts/files/plus-jakarta-sans-latin-ext-800-normal.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --background: #f6f8ff;
  --surface: #ffffff;
  --surface-low: #f1f5ff;
  --surface-container: #eaf0fb;
  --surface-high: #e2e9f5;
  --text: #1a1c1f;
  --muted: #414754;
  --line: #c1c6d7;
  --outline: #717786;
  --primary: #0059bb;
  --primary-strong: #004493;
  --primary-soft: #d8e2ff;
  --red: #bc000a;
  --red-soft: #ffdad5;
  --yellow: #d0a600;
  --yellow-soft: #ffe08b;
  --green: #0f7b4f;
  --green-soft: #d7f7e6;
  --danger: #ba1a1a;
  --success: #15803d;
  --warning: #a16207;
  --ambient-blue: rgba(0, 89, 187, .16);
  --ambient-red: rgba(188, 0, 10, .08);
  --ambient-yellow: rgba(208, 166, 0, .12);
  --ambient-grid: rgba(0, 89, 187, .13);
  --page-gradient: linear-gradient(135deg, #fcfdff 0%, #f3f6ff 42%, #edf5fb 100%);
  --shadow: 0 14px 38px -28px rgba(23, 35, 61, .32);
  --radius: 8px;
  --radius-lg: 12px;
  --gutter: 24px;
  --container: 1200px;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  html[data-theme="system"] {
    --background: #111317;
    --surface: #1a1c20;
    --surface-low: #20242b;
    --surface-container: #252a31;
    --surface-high: #303640;
    --text: #f0f0f5;
    --muted: #c1c6d7;
    --line: #414754;
    --outline: #a6adbd;
    --primary: #adc7ff;
    --primary-strong: #d8e2ff;
    --primary-soft: #213557;
    --red: #ffb4aa;
    --red-soft: #4d1517;
    --yellow: #f1c100;
    --yellow-soft: #4b3b00;
    --green: #7adba7;
    --green-soft: #173b29;
    --ambient-blue: rgba(96, 142, 255, .13);
    --ambient-red: rgba(255, 180, 170, .06);
    --ambient-yellow: rgba(241, 193, 0, .07);
    --ambient-grid: rgba(173, 199, 255, .11);
    --page-gradient: linear-gradient(135deg, #111317 0%, #121722 48%, #0e1118 100%);
    --shadow: 0 4px 16px rgba(0, 0, 0, .28);
  }
}

html[data-theme="dark"] {
  --background: #111317;
  --surface: #1a1c20;
  --surface-low: #20242b;
  --surface-container: #252a31;
  --surface-high: #303640;
  --text: #f0f0f5;
  --muted: #c1c6d7;
  --line: #414754;
  --outline: #a6adbd;
  --primary: #adc7ff;
  --primary-strong: #d8e2ff;
  --primary-soft: #213557;
  --red: #ffb4aa;
  --red-soft: #4d1517;
  --yellow: #f1c100;
  --yellow-soft: #4b3b00;
  --green: #7adba7;
  --green-soft: #173b29;
  --ambient-blue: rgba(96, 142, 255, .13);
  --ambient-red: rgba(255, 180, 170, .06);
  --ambient-yellow: rgba(241, 193, 0, .07);
  --ambient-grid: rgba(173, 199, 255, .11);
  --page-gradient: linear-gradient(135deg, #111317 0%, #121722 48%, #0e1118 100%);
  --shadow: 0 4px 16px rgba(0, 0, 0, .28);
}

html[data-theme="light"] {
  --background: #f6f8ff;
  --surface: #ffffff;
  --surface-low: #f1f5ff;
  --surface-container: #eaf0fb;
  --surface-high: #e2e9f5;
  --text: #1a1c1f;
  --muted: #414754;
  --line: #c1c6d7;
  --outline: #717786;
  --ambient-blue: rgba(0, 89, 187, .16);
  --ambient-red: rgba(188, 0, 10, .08);
  --ambient-yellow: rgba(208, 166, 0, .12);
  --ambient-grid: rgba(0, 89, 187, .13);
  --page-gradient: linear-gradient(135deg, #fcfdff 0%, #f3f6ff 42%, #edf5fb 100%);
  --shadow: 0 14px 38px -28px rgba(23, 35, 61, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 2px 2px, var(--ambient-grid) 1px, transparent 0) 0 0 / 58px 58px,
    radial-gradient(ellipse at 18% 8%, var(--ambient-blue), transparent 34rem),
    radial-gradient(ellipse at 88% 12%, var(--ambient-red), transparent 30rem),
    radial-gradient(ellipse at 72% 86%, var(--ambient-yellow), transparent 36rem),
    var(--page-gradient),
    var(--background);
  background-attachment: fixed;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

#shader-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

html[data-theme="light"] #shader-canvas {
  display: none;
}

@media (prefers-color-scheme: light) {
  html[data-theme="system"] #shader-canvas {
    display: none;
  }
}

.topbar,
.shell,
.footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.topbar.is-scrolled {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
}

.brand-logo {
  width: 38px;
  height: 38px;
  padding: 3px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(26, 28, 31, .08);
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
}

.topbar-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 64px;
  display: none;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.topbar-panel.is-open {
  display: block;
}

.nav,
.prefs {
  display: grid;
  gap: 10px;
}

.nav a {
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary);
  background: var(--surface-low);
}

.prefs {
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.pref-form {
  display: flex;
  margin: 0;
}

.language-select {
  width: 58px;
  min-height: 44px;
  padding: 6px 10px;
  font-size: 22px;
  line-height: 1;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--primary);
  border-color: var(--primary);
}

.theme-icon {
  display: none;
  width: 22px;
  height: 22px;
}

.theme-icon-moon {
  fill: currentColor;
}

.theme-icon-sun {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle[data-mode="light"] .theme-icon-moon,
.theme-toggle[data-mode="dark"] .theme-icon-sun {
  display: block;
}

.prefs label span,
.form label span,
.checkin-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 1px solid var(--primary);
}

.shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 56px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 140px);
  align-items: center;
  gap: 40px;
  padding: 72px 0;
}

.hero-animate {
  animation: heroEntrance 1.2s cubic-bezier(.2, 1, .3, 1) both;
}

.hero-visual.hero-animate {
  animation-delay: .18s;
}

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

html.animations-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2, 1, .3, 1), transform 1s cubic-bezier(.2, 1, .3, 1);
}

html.animations-ready .scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.hover-float {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hover-float:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px rgba(0, 89, 187, .3);
}

.progress-bar-animated {
  position: relative;
  overflow: hidden;
}

.progress-bar-animated::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  animation: scan 2s infinite;
}

.parallax-target {
  will-change: transform;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes scan {
  to {
    left: 100%;
  }
}

.stitch-hero {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy h1 {
  margin: 0 0 24px;
  max-width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--muted);
}

.hero-tagline {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy,
.hero-visual {
  width: 100%;
  min-width: 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  background: var(--red-soft);
  z-index: -1;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-hero {
  width: min(100%, 330px);
  height: min(330px, calc(100vw - 40px));
  aspect-ratio: 1 / 1;
  align-self: center;
  justify-self: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.product-hero::before {
  display: none;
}

.product-hero::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -24px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 70%);
  filter: blur(12px);
  z-index: -1;
}

.product-hero img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px -34px rgba(0, 0, 0, .75), 0 12px 24px -20px rgba(0, 89, 187, .42);
}

@media (max-width: 520px) {
  .stitch-hero,
  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .stitch-hero {
    grid-template-columns: minmax(0, calc(100vw - 40px));
    justify-content: start;
  }

  .hero-copy h1,
  .hero-copy p {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding: 48px 0 64px;
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-copy p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .hero-tagline {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .product-hero {
    --product-size: min(280px, calc(100vw - 56px));
    width: var(--product-size);
    height: var(--product-size);
    justify-self: start;
    margin-left: calc((100vw - 40px - var(--product-size)) / 2);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
  }

  .price-card {
    gap: 12px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .price-card.is-highlight {
    transform: translateY(-4px);
  }

  .price-badge {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .price-card h3 {
    font-size: 18px;
  }

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

  .price-main span,
  .price-card p,
  .price-card small {
    font-size: 14px;
    line-height: 1.45;
  }

  .single-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
  }

  .single-price-row span {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
  }

  .single-price-row strong {
    grid-column: 1;
    grid-row: 1;
  }

  .single-price-row b {
    grid-column: 2;
    grid-row: 1;
  }
}

.logo-hero img {
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-block {
  padding: 72px 0;
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.cta-band h2,
.page-head h1,
.auth-panel h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-head p,
.cta-band p {
  margin: 0;
  color: var(--muted);
}

.actions,
.page-head,
.panel-head,
.split,
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.actions.center {
  justify-content: center;
}

.page-head,
.panel-head,
.split {
  justify-content: space-between;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

.button.inverse {
  border-color: #fff;
  background: #fff;
  color: #0059bb;
}

.button.ghost {
  border-color: color-mix(in srgb, #fff 75%, transparent);
  background: transparent;
  color: #fff;
}

.button.small {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 14px;
}

.panel,
.auth-panel,
.feature,
.data-card,
.metric-card,
.list-card,
.qr-card {
  margin: 16px 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.auth-panel,
.panel.narrow {
  max-width: 520px;
  margin-inline: auto;
}

.form {
  display: grid;
  gap: 16px;
}

.checkin-page,
.checkin-form,
.vcard-select-page,
.vcard-selection-form,
.vcard-choice-list {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.checkin-form {
  max-width: 640px;
  margin-inline: auto;
}

.vcard-choice-list {
  gap: 8px;
}

.vcard-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.vcard-choice input {
  width: auto;
  min-height: auto;
}

.vcard-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow-wrap: anywhere;
}

.inline-form {
  display: inline;
}

.feature-grid,
.data-grid,
.metric-grid,
.qr-grid,
.cards-list {
  display: grid;
  gap: 24px;
}

.stitch-grid {
  align-items: stretch;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature h2,
.feature h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

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

.feature img {
  width: 100%;
  max-height: 260px;
  margin-top: auto;
  border-radius: 8px;
  object-fit: cover;
}

.feature-video {
  position: relative;
  width: 100%;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #070b12;
  box-shadow: 0 22px 48px -34px rgba(0, 0, 0, .8), 0 12px 24px -22px rgba(0, 89, 187, .45);
}

.feature-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, .12), rgba(5, 10, 18, .38));
  color: #fff;
  cursor: pointer;
  transition: opacity .18s ease, background .18s ease;
}

.video-play::before {
  content: "";
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  background: rgba(0, 89, 187, .88);
  box-shadow: 0 18px 42px -18px rgba(0, 0, 0, .9);
}

.video-play span {
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}

.video-play:hover,
.video-play:focus-visible {
  background: linear-gradient(180deg, rgba(5, 10, 18, .04), rgba(5, 10, 18, .28));
  outline: 0;
}

.feature-video.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.feature-icon.blue {
  background: var(--primary);
}

.feature-icon.red {
  background: var(--red);
}

.feature-icon.yellow {
  background: var(--yellow);
  color: #241a00;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.price-card.is-highlight {
  border-color: color-mix(in srgb, var(--primary) 66%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 10%, var(--surface)), var(--surface));
  box-shadow: 0 26px 58px -34px var(--primary), var(--shadow);
  transform: translateY(-8px);
}

.price-card.is-red-highlight {
  border-color: color-mix(in srgb, var(--red) 70%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--red) 10%, var(--surface)), var(--surface));
  box-shadow: 0 26px 58px -34px var(--red), var(--shadow);
  transform: translateY(-8px);
}

.price-card.is-red-highlight .price-badge {
  background: var(--red-soft);
  color: var(--danger);
}

.price-card-top {
  display: grid;
  gap: 10px;
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
}

.price-card h3,
.single-prices h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.price-main {
  display: grid;
  gap: 4px;
}

.price-main strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.price-main span {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}

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

.price-card small,
.price-note,
.single-prices .panel-head p {
  margin: 0;
  color: var(--muted);
}

.price-card small {
  margin-top: auto;
  font-weight: 700;
}

.single-prices {
  margin-top: 24px;
}

.single-price-list {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.single-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.single-price-row strong,
.single-price-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.single-price-row span {
  color: var(--muted);
}

.single-price-row b {
  color: var(--text);
  font-size: 18px;
  white-space: nowrap;
}

.price-note {
  margin-top: 14px;
  font-size: 13px;
}

@media (max-width: 520px) {
  .pricing-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, calc(100vw - 54px));
    grid-template-columns: none;
    gap: 14px;
    margin-inline: -2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 6px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .price-card {
    gap: 12px;
    min-height: 0;
    padding: 20px;
    scroll-snap-align: start;
  }

  .price-card.is-highlight {
    transform: translateY(-4px);
  }

  .price-card.is-red-highlight {
    transform: translateY(-4px);
  }

  .price-badge {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .price-card h3 {
    font-size: 22px;
  }

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

  .price-main span,
  .price-card p,
  .price-card small {
    font-size: 14px;
    line-height: 1.45;
  }

  .single-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
  }

  .single-price-row strong {
    grid-column: 1;
    grid-row: 1;
  }

  .single-price-row span {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
  }

  .single-price-row b {
    grid-column: 2;
    grid-row: 1;
  }
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row:nth-child(odd):not(.spec-head) {
  background: color-mix(in srgb, var(--surface-low) 56%, transparent);
}

.spec-row strong {
  color: var(--text);
  font-weight: 850;
}

.spec-row span:last-child {
  color: var(--muted);
}

.spec-head {
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 14%, var(--surface)), var(--surface-container));
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-head span:last-child {
  color: var(--primary-strong);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
}

.dot.blue {
  background: var(--primary);
}

.dot.red {
  background: var(--red);
}

.dot.yellow {
  background: var(--yellow);
}

.cta-band {
  margin: 72px 0;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .16) 1px, transparent 0) 0 0 / 40px 40px,
    linear-gradient(135deg, #0059bb, #0070ea 55%, #004493);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 89, 187, .16);
}

.cta-band p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #d8e2ff;
}

.examples-section {
  padding-top: 0;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.example-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, var(--surface-low));
  box-shadow: var(--shadow);
}

.example-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: var(--surface-container);
}

.example-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.example-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.example-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 16px) / 2);
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding: 0;
  }

  .example-card:last-child:nth-child(odd) {
    width: calc((100% - 14px) / 2);
  }

  .example-card-body {
    padding: 12px;
  }

  .example-card h3 {
    font-size: 15px;
  }

  .example-card p {
    font-size: 13px;
  }
}

.metric-card strong,
.metric {
  display: block;
  font-size: 30px;
  font-weight: 850;
}

.metric span,
.muted {
  color: var(--muted);
}

.badge,
.alert {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-low);
  color: var(--text);
}

.alert {
  display: flex;
  margin: 12px 0;
  border-radius: 8px;
}

.alert.success {
  color: var(--success);
  background: var(--green-soft);
}

.alert.danger {
  color: var(--danger);
  background: var(--red-soft);
}

.alert.warning {
  color: var(--warning);
  background: var(--yellow-soft);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.qr-card canvas {
  display: block;
  width: 180px;
  height: 180px;
  margin: 10px 0;
  background: #fff;
}

code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px;
  border-radius: 8px;
  background: var(--surface-low);
}

.footer {
  padding: 32px 24px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--surface-container);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-section h2 {
  margin-top: 0;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

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

.check input {
  width: auto;
  min-height: auto;
}

@media (min-width: 760px) {
  .menu-button {
    display: none;
  }

  .topbar-panel {
    position: static;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .prefs {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .stitch-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: 48px;
  }

  .hero-copy p {
    max-width: 640px;
  }

  .feature-grid,
  .data-grid,
  .metric-grid,
  .qr-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .spec-row {
    grid-template-columns: minmax(200px, .9fr) minmax(0, 1.8fr);
    align-items: start;
  }

  .spec-row > :last-child {
    text-align: left;
  }
}

@media (min-width: 1080px) {
  .topbar {
    padding-inline: 32px;
  }
}

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

  #shader-canvas {
    display: none;
  }

  .hero-animate,
  .float-animation,
  .progress-bar-animated::after {
    animation: none;
  }

  .hover-float,
  html.animations-ready .scroll-reveal {
    transition: none;
  }

  html.animations-ready .scroll-reveal,
  html.animations-ready .scroll-reveal.visible {
    opacity: 1;
    transform: none;
  }
}
