@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --brand: #e11d48;
  --brand-dark: #be123c;
  --button-text: #ffffff;
  --font-sans: -apple-system, BlinkMacSystemFont, sans-serif;
  --font-nav: Inter, system-ui, sans-serif;
  --shadow-brand: 0 12px 28px rgba(225, 29, 72, 0.28);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --signup-promo-overlap: clamp(42px, 5vw, 54px);
  --content-max: 1100px;
  --content-gutter: 16px;
  --header-gutter: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

section[id],
.anchor,
#contact-form {
  scroll-margin-top: clamp(88px, 14vw, 100px);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #ffffff;
}

body.is-loading {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

body.is-loading .site-header {
  padding-right: var(--scrollbar-width, 0px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b2001d 0%, #9c0018 100%);
  transition:
    opacity 0.45s var(--ease-standard),
    visibility 0.45s var(--ease-standard);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-loader-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: page-loader-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.22));
}

.page-loader-logo {
  width: min(220px, 72vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

@keyframes page-loader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition: none;
  }

  .page-loader-icon {
    animation: none;
  }
}

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

.container {
  width: min(var(--content-max), calc(100% - var(--content-gutter) * 2));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.site-header .header-inner {
  width: min(var(--content-max), calc(100% - var(--content-gutter) * 2));
  max-width: none;
  margin: 0 auto;
  padding-inline: 0;
  box-sizing: border-box;
  min-height: clamp(68px, 14vw, 80px);
  height: clamp(68px, 14vw, 80px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  height: clamp(42px, 10vw, 60px);
  width: auto;
  max-width: min(100%, 220px);
  object-fit: contain;
}

.header-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: none;
  background: rgba(225, 29, 72, 0.08);
  color: var(--brand);
  box-shadow: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.header-menu-toggle:hover {
  background: rgba(225, 29, 72, 0.12);
}

.header-menu-toggle:active {
  background: rgba(225, 29, 72, 0.16);
}

.menu-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-icon svg {
  width: 100%;
  height: 100%;
}

.menu-icon-close {
  display: none;
}

.header-menu-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--font-nav);
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 14.4px;
  font-weight: 400;
  color: #5b6474;
  padding: 8px 4px;
}

.nav-link:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}

.action-link:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  height: clamp(36px, 8vw, 40px);
  padding: 0 clamp(14px, 2vw, 22px);
  font-size: clamp(12px, 1.3vw, 13.5px);
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  transition:
    transform 0.12s var(--ease-standard),
    background 0.15s,
    box-shadow 0.2s,
    border-color 0.15s;
  background: #a8001a;
  color: rgb(255, 255, 255);
  box-shadow: 0 12px 24px rgba(168, 0, 26, 0.18);
  transform: scale(1);
}

.action-button:hover {
  background: var(--brand-dark);
  border-color: rgba(190, 18, 60, 0.15);
  transform: scale(1.01);
}

.action-button:active {
  transform: scale(0.99);
}

.action-arrow {
  font-size: 14px;
  line-height: 1;
  transform: translateY(-0.5px);
}

.site-header.is-open .menu-icon-open {
  display: none;
}

.site-header.is-open .menu-icon-close {
  display: inline-flex;
}

.content {
  padding-top: clamp(68px, 14vw, 80px);
  min-height: calc(100vh - clamp(68px, 14vw, 80px) - 320px);
  overflow: visible;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 3.5vw, 56px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse 72% 58% at 88% 6%, rgba(225, 29, 72, 0.10) 0%, rgba(225, 29, 72, 0.04) 38%, transparent 68%),
    radial-gradient(ellipse 48% 42% at 100% 0%, rgba(254, 205, 211, 0.42) 0%, transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.06), transparent);
  pointer-events: none;
}

.signup-promo {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--signup-promo-overlap));
  margin-bottom: calc(-1 * var(--signup-promo-overlap));
  padding: 0;
  background: transparent;
}

.signup-promo .container {
  width: min(920px, calc(100% - 48px));
}

.signup-promo-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #b2001d 0%, #9c0018 45%, #c40022 100%);
  background-size: 220% 220%;
  animation: signup-promo-gradient 9s ease-in-out infinite;
  min-height: clamp(88px, 10vw, 108px);
  padding: clamp(24px, 3.5vw, 32px) clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 60px rgba(156, 0, 24, 0.28);
}

.signup-promo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.signup-promo-shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 46%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.06) 54%,
    transparent 58%
  );
  transform: translateX(-60%) rotate(8deg);
  animation: signup-promo-shine 5.5s ease-in-out infinite;
}

.signup-promo-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(253, 230, 138, 0.95);
  box-shadow: 0 0 10px rgba(253, 230, 138, 0.65);
  opacity: 0;
  animation: signup-promo-float 4.2s ease-in-out infinite;
}

.signup-promo-particle:nth-child(2) {
  left: 14%;
  bottom: 18%;
  animation-delay: 0s;
}

.signup-promo-particle:nth-child(3) {
  left: 32%;
  bottom: 8%;
  animation-delay: 0.9s;
  width: 4px;
  height: 4px;
}

.signup-promo-particle:nth-child(4) {
  left: 58%;
  bottom: 22%;
  animation-delay: 1.6s;
}

.signup-promo-particle:nth-child(5) {
  left: 74%;
  bottom: 12%;
  animation-delay: 2.3s;
  width: 3px;
  height: 3px;
}

.signup-promo-particle:nth-child(6) {
  left: 88%;
  bottom: 28%;
  animation-delay: 3.1s;
}

.signup-promo-spark-bit {
  position: absolute;
  color: rgba(253, 230, 138, 0.55);
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  animation: signup-promo-spark-bit 5s ease-in-out infinite;
}

.signup-promo-spark-bit:nth-child(7) {
  left: 22%;
  top: 18%;
  animation-delay: 0.4s;
}

.signup-promo-spark-bit:nth-child(8) {
  left: 48%;
  top: 72%;
  font-size: 9px;
  animation-delay: 2s;
}

.signup-promo-spark-bit:nth-child(9) {
  right: 18%;
  top: 24%;
  font-size: 13px;
  animation-delay: 3.4s;
}

@keyframes signup-promo-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes signup-promo-shine {
  0%,
  18% {
    transform: translateX(-70%) rotate(8deg);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  45%,
  100% {
    transform: translateX(70%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes signup-promo-float {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.6);
  }

  20% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.35;
  }

  100% {
    opacity: 0;
    transform: translateY(-28px) scale(1);
  }
}

@keyframes signup-promo-spark-bit {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }

  15% {
    opacity: 0.85;
    transform: scale(1) rotate(18deg);
  }

  35% {
    opacity: 0.25;
    transform: scale(0.85) rotate(36deg);
  }
}

.signup-promo-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.signup-promo-panel::before,
.signup-promo-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.signup-promo-panel::before {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: -60px;
  background: rgba(255, 255, 255, 0.08);
  animation: signup-promo-orb 7s ease-in-out infinite;
}

.signup-promo-panel::after {
  width: 140px;
  height: 140px;
  top: -70px;
  right: 48px;
  background: rgba(255, 255, 255, 0.06);
  animation: signup-promo-orb 8s ease-in-out infinite 1.5s;
}

@keyframes signup-promo-orb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.signup-promo-text {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.94);
  font: 500 clamp(18px, 2.8vw, 22px) / 1.45 var(--font-sans);
  text-align: left;
}

.signup-promo-message {
  flex: 1 1 auto;
}

.signup-promo-credits {
  display: inline-block;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  animation: signup-promo-credits-glow 2.8s ease-in-out infinite;
}

@keyframes signup-promo-credits-glow {
  0%,
  100% {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(253, 230, 138, 0.35);
    transform: scale(1);
  }

  50% {
    color: #fff9e6;
    text-shadow: 0 0 22px rgba(253, 230, 138, 0.85), 0 0 36px rgba(253, 230, 138, 0.35);
    transform: scale(1.06);
  }
}

.signup-promo-sparkle {
  display: inline-flex;
  flex: 0 0 auto;
  color: #fde68a;
  filter: drop-shadow(0 0 10px rgba(253, 230, 138, 0.45));
}

.signup-promo-sparkle svg {
  display: block;
}

.signup-promo-sparkle-start svg {
  width: 40px;
  height: 40px;
  animation: signup-promo-sparkle 2.4s ease-in-out infinite;
}

.signup-promo-sparkle-end svg {
  width: 32px;
  height: 32px;
  animation: signup-promo-sparkle 2.4s ease-in-out infinite 1.2s;
}

@keyframes signup-promo-sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.12) rotate(12deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signup-promo-panel {
    animation: none;
    background: linear-gradient(135deg, #b2001d 0%, #9c0018 100%);
  }

  .signup-promo-shine,
  .signup-promo-particle,
  .signup-promo-spark-bit {
    animation: none;
    opacity: 0;
  }

  .signup-promo-panel::before,
  .signup-promo-panel::after {
    animation: none;
  }

  .signup-promo-credits {
    animation: none;
    transform: none;
  }

  .signup-promo-sparkle-start svg,
  .signup-promo-sparkle-end svg {
    animation: none;
  }

  .signup-promo-link span[aria-hidden="true"] {
    animation: none;
  }

  .signup-promo-link:hover {
    transform: none;
  }
}

.signup-promo-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font: 600 14px var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.signup-promo-link span[aria-hidden="true"] {
  display: inline-block;
  animation: signup-promo-arrow 1.8s ease-in-out infinite;
}

@keyframes signup-promo-arrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.signup-promo-link:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.product-tour-shell {
  background: #ffffff;
}

.problem {
  position: relative;
  z-index: 1;
  padding: calc(86px + var(--signup-promo-overlap)) 0 92px;
  background: #f8f8fa;
}

.problem-inner {
  text-align: center;
}

.problem-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.problem-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.problem-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.problem-title {
  margin: 14px auto 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 720px;
  font-weight: 700;
}

.problem-subtitle {
  margin: 16px auto 0;
  max-width: 600px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.problem-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.problem-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.06);
  height: 100%;
  transition:
    transform 0.28s var(--ease-standard),
    box-shadow 0.28s var(--ease-standard),
    border-color 0.28s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.12);
}

.problem-card.highlight {
  position: relative;
  border: 2px solid rgba(185, 28, 28, 0.7);
}

.problem-card.highlight:hover {
  border-color: rgba(185, 28, 28, 0.95);
  box-shadow: 0 26px 56px rgba(178, 0, 29, 0.2);
}

.problem-pill {
  position: absolute;
  top: -10px;
  right: 18px;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.problem-card-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}

.problem-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.72);
  font-size: 23px;
  transition:
    transform 0.28s var(--ease-standard),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.problem-card:hover .problem-card-icon {
  transform: scale(1.08);
}

.problem-card:hover .problem-card-icon:not(.brand) {
  background: rgba(15, 23, 42, 0.06);
}

.problem-card-icon svg {
  width: 25px;
  height: 25px;
}

.problem-card-icon.brand {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #b2001d;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(178, 0, 29, 0.18);
}

.problem-card-icon.brand svg {
  width: 30px;
  height: 30px;
}

.problem-card-title {
  color: rgba(15, 23, 42, 0.78);
  font: 700 16px var(--font-sans);
}

.problem-card-title.brand-text {
  color: #b2001d;
  font: 800 18px var(--font-sans);
  letter-spacing: -0.02em;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.problem-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(15, 23, 42, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.problem-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transform: translateY(1px);
}

.problem-bullet.x {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.problem-bullet.check {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.how {
  background: transparent;
}

.how-inner {
  text-align: center;
  padding: 86px 0 28px;
}

.how-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.how-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.how-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.how-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.how-title {
  margin: 14px 0 0;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px) / 1.12 var(--font-sans);
}

.how-subtitle {
  margin: 16px auto 0;
  max-width: 600px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.how-experience {
  position: relative;
  --how-steps-count: 5;
  --how-step-scroll: 68vh;
  --how-chrome: 258px;
  --how-image-max: min(620px, calc(100vh - var(--how-chrome)));
}

.how-experience.is-scroll-driven {
  height: calc((var(--how-steps-count) - 1) * var(--how-step-scroll) + 100vh);
}

.how-experience-sticky {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-experience.is-scroll-driven .how-experience-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  z-index: 2;
  justify-content: flex-start;
}

.how-experience.is-scroll-driven .step:not(.active) {
  opacity: 0.72;
}

.how-experience.is-scroll-driven .step:not(.active) .step-title {
  color: rgba(15, 23, 42, 0.58);
}

.how-experience.is-scroll-driven .step.active {
  opacity: 1;
}

.how-experience.is-scroll-driven .how-inner {
  flex-shrink: 0;
  padding: clamp(48px, 7vh, 72px) 0 clamp(12px, 2vh, 24px);
}

.how-experience.is-scroll-driven .steps {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 4px 0 8px;
  width: 100%;
}

.how-experience.is-scroll-driven .steps-inner {
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: center;
  align-items: center;
  max-height: 100%;
  min-height: 0;
  gap: clamp(32px, 4vw, 60px);
}

.how-experience.is-scroll-driven .steps-left,
.how-experience.is-scroll-driven .steps-right {
  min-height: 0;
  max-height: 100%;
}

.how-experience.is-scroll-driven .steps-left {
  justify-content: flex-end;
}

.how-experience.is-scroll-driven .steps-right {
  justify-content: flex-start;
  padding-bottom: 0;
  align-self: center;
}

.how-experience.is-scroll-driven .steps-list {
  gap: clamp(8px, 1.4vh, 14px);
}

.how-experience.is-scroll-driven .how-scroll-progress {
  display: flex;
  flex-shrink: 0;
  margin-top: auto;
  padding-top: clamp(14px, 2.2vh, 22px);
  padding-bottom: clamp(16px, 2.4vh, 28px);
}

.how-scroll-progress {
  display: none;
  align-items: center;
  gap: 14px;
  width: min(520px, calc(100% - var(--content-gutter) * 2));
  margin-inline: auto;
  padding: 0 0 clamp(18px, 3vh, 28px);
}

.how-scroll-progress-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.how-scroll-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b2001d 0%, #d40028 100%);
  transition: width 0.32s var(--ease-standard);
}

.how-scroll-progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.46);
  white-space: nowrap;
}

.steps {
  background: transparent;
}

.steps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 981px) {
  .steps-inner {
    grid-template-columns: minmax(0, 520px) auto;
    justify-content: center;
  }
}

.steps-left {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 981px) {
  .steps-left {
    justify-content: flex-end;
  }
}

.steps-list {
  width: 100%;
  max-width: 520px;
  position: relative;
  padding-left: 22px;
  display: grid;
  gap: 14px;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 2px;
}

.step {
  border: 0;
  padding: 10px 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font: inherit;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
}

.step:focus-visible {
  outline: none;
}

.step:focus-visible .step-icon {
  box-shadow: 0 0 0 3px rgba(178, 14, 37, 0.18);
}

.step:hover:not(.active) .step-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.05);
}

.step:hover:not(.active) .step-icon {
  background: rgba(178, 14, 37, 0.08);
  border-color: rgba(178, 14, 37, 0.2);
}

.step:hover:not(.active) .step-num {
  color: rgba(178, 14, 37, 0.78);
}

.step:hover:not(.active) .step-icon::before {
  background: rgba(178, 14, 37, 0.5);
}

.step.active:hover .step-card {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.68);
  position: relative;
  transition:
    background-color 320ms var(--ease-standard),
    border-color 320ms var(--ease-standard),
    color 320ms var(--ease-standard),
    box-shadow 320ms var(--ease-standard);
}

.step-icon::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  border: 2px solid #f8fafc;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.step-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.step-icon-img-active {
  display: none;
}

.step-icon-has-active-image.active .step-icon-img-default,
.step-icon-qr.active .step-icon-img-default {
  display: none;
}

.step-icon-has-active-image.active .step-icon-img-active,
.step-icon-qr.active .step-icon-img-active {
  display: block;
}

.step-body {
  padding-top: 4px;
}

.step-num {
  font-size: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.42);
  letter-spacing: 0.08em;
}

.step-title {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.86);
}

.step.active {
  grid-template-columns: 44px 1fr;
  align-items: start;
}

.step.active .step-num {
  color: rgba(178, 14, 37, 0.92);
}

.step-icon.active {
  background: #b20e25;
  border-color: rgba(178, 14, 37, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

.step-icon.active::before {
  background: #b20e25;
}

.step-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: none;
  transition:
    background-color 420ms var(--ease-standard),
    border-color 420ms var(--ease-standard),
    box-shadow 420ms var(--ease-standard);
}

.step-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.step-head .step-title {
  margin-top: 0;
}

.step-desc {
  color: rgba(15, 23, 42, 0.58);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  overflow: hidden;
  transition:
    max-height 320ms var(--ease-standard),
    opacity 240ms var(--ease-standard),
    transform 320ms var(--ease-standard),
    margin-top 320ms var(--ease-standard);
}

.step.active .step-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.06);
}

.step.active .step-desc {
  margin-top: 8px;
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.steps-right {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.steps-preview {
  width: min(460px, 94%);
  height: 760px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.5s var(--ease-standard);
}

.steps-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  height: 72%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(178, 14, 37, 0.12), rgba(178, 14, 37, 0));
  pointer-events: none;
  transition: opacity 0.45s var(--ease-standard);
}

.steps-preview-image {
  width: 440px;
  height: 760px;
  display: block;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.22s ease;
  filter: drop-shadow(0 28px 60px rgba(2, 6, 23, 0.22));
}

.steps-preview-image.is-fading {
  opacity: 0;
}

.how-experience.is-scroll-driven .step-card {
  transition:
    background-color 0.45s var(--ease-standard),
    border-color 0.45s var(--ease-standard),
    box-shadow 0.45s var(--ease-standard),
    transform 0.45s var(--ease-standard);
}

.how-experience.is-scroll-driven .step.active .step-card {
  transform: translateX(4px);
}

.how-experience.is-scroll-driven .steps-preview {
  width: min(480px, 44vw, 100%);
  height: auto;
  max-height: var(--how-image-max);
  flex-shrink: 1;
}

.how-experience.is-scroll-driven .steps-preview-image {
  width: min(460px, 100%);
  height: auto;
  max-height: var(--how-image-max);
  object-fit: contain;
}

@media (max-height: 920px) {
  .how-experience.is-scroll-driven {
    --how-chrome: 268px;
    --how-image-max: min(580px, calc(100vh - var(--how-chrome)));
  }

  .how-experience.is-scroll-driven .how-inner {
    padding-top: 40px;
    padding-bottom: 12px;
  }

  .how-experience.is-scroll-driven .how-title {
    font-size: clamp(24px, 3.2vw, 34px);
  }

  .how-experience.is-scroll-driven .how-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .how-experience.is-scroll-driven .steps-inner {
    gap: 36px;
  }

  .how-experience.is-scroll-driven .steps-preview {
    width: min(440px, 42vw, 100%);
  }

  .how-experience.is-scroll-driven .steps-preview-image {
    width: min(420px, 100%);
  }

  .how-experience.is-scroll-driven .step {
    padding: 8px 0;
  }

  .how-experience.is-scroll-driven .step.active .step-desc {
    max-height: 96px;
    font-size: 13px;
  }
}

@media (max-height: 760px) {
  .how-experience.is-scroll-driven {
    --how-chrome: 272px;
    --how-image-max: min(480px, calc(100vh - var(--how-chrome)));
  }

  .how-experience.is-scroll-driven .how-inner {
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .how-experience.is-scroll-driven .how-title {
    font-size: clamp(20px, 2.8vw, 28px);
  }

  .how-experience.is-scroll-driven .how-subtitle {
    font-size: 14px;
  }

  .how-experience.is-scroll-driven .steps-preview {
    width: min(380px, 38vw, 100%);
  }

  .how-experience.is-scroll-driven .steps-preview-image {
    width: min(360px, 100%);
  }

  .how-experience.is-scroll-driven .steps-inner {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step,
  .step-icon,
  .step-card,
  .step-desc,
  .steps-preview-image,
  .how-scroll-progress-fill,
  .problem-card,
  .problem-card-icon,
  .feature-card,
  .feature-icon,
  .industry-card,
  .industry-card::after,
  .industry-icon,
  .industry-title {
    transition: none;
  }

  .problem-card:hover,
  .feature-card:hover,
  .feature-card-wide:hover,
  .industry-card:hover {
    transform: none;
  }

  .problem-card:hover .problem-card-icon,
  .feature-card:hover .feature-icon,
  .industry-card:hover .industry-icon {
    transform: none;
  }

  .industry-card:hover .industry-title {
    color: rgba(15, 23, 42, 0.9);
  }
}

.device {
  width: min(360px, 88%);
  aspect-ratio: 390 / 844;
  border-radius: 58px;
  background: #0b0b0d;
  box-shadow: 0 70px 140px rgba(2, 6, 23, 0.25);
  position: relative;
}

.device::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 58px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.device-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 32px;
  border-radius: 999px;
  background: #050608;
}

.device-screen {
  position: absolute;
  inset: 14px;
  border-radius: 46px;
  background: #ffffff;
  overflow: hidden;
}

.device-top {
  padding: 16px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  font-size: 12px;
}

.device-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.device-bars {
  width: 16px;
  height: 10px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0 3px, transparent 3px 4px, rgba(15, 23, 42, 0.9) 4px 7px, transparent 7px 8px, rgba(15, 23, 42, 0.9) 8px 11px, transparent 11px 12px, rgba(15, 23, 42, 0.9) 12px 16px);
  border-radius: 2px;
  opacity: 0.9;
}

.device-wifi {
  width: 14px;
  height: 10px;
  border: 2px solid rgba(15, 23, 42, 0.9);
  border-color: rgba(15, 23, 42, 0.9) transparent transparent transparent;
  border-radius: 50%;
  transform: translateY(2px);
}

.device-battery {
  width: 22px;
  height: 12px;
  border-radius: 3px;
  border: 2px solid rgba(15, 23, 42, 0.9);
  position: relative;
}

.device-battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: rgba(15, 23, 42, 0.9);
}

.device-battery-fill {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 70%;
  border-radius: 2px;
  background: rgba(15, 23, 42, 0.9);
}

.feedback {
  padding: 26px 22px 88px;
  text-align: center;
}

.feedback-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(178, 14, 37, 0.08);
  color: #b20e25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
}

.feedback-icon svg {
  width: 22px;
  height: 22px;
}

.feedback-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.feedback-subtitle {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
}

.stars {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 2px;
}

.feedback-loved {
  margin-top: 10px;
  color: rgba(178, 14, 37, 0.9);
  font-weight: 900;
  font-size: 12px;
}

.feedback-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.7);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
}

.tag.active {
  border-color: rgba(178, 14, 37, 0.6);
  color: rgba(178, 14, 37, 0.9);
}

.feedback-note {
  margin: 18px auto 0;
  width: min(260px, 100%);
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(15, 23, 42, 0.45);
  font-size: 11px;
  font-weight: 800;
}

.feedback-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 48px;
  border-radius: 14px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.tour {
  background: #f8f8fa;
  padding: 86px 0 92px;
  overflow: hidden;
}

.tour-inner {
  text-align: center;
}

.tour-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.tour-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.tour-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.tour-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.tour-title {
  margin: 14px 0 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px) / 1.12 var(--font-sans);
}

.tour-subtitle {
  margin: 16px auto 0;
  max-width: 600px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 19px;
  line-height: 1.6;
}

.tour-tabs {
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.tour-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-top-color: rgba(15, 23, 42, 0.1);
  border-right-color: rgba(15, 23, 42, 0.1);
  border-bottom-color: rgba(15, 23, 42, 0.1);
  border-left-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.72);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-tab-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  pointer-events: none;
}

.tour-tab-icon svg {
  width: 14px;
  height: 14px;
}

.tour-tab-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.tour-tab-icon-img-active {
  display: none;
}

.tour-tab.is-active {
  background: #b20e25;
  border-color: rgba(178, 14, 37, 0.2);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(178, 14, 37, 0.14);
}

.tour-tab.is-active .tour-tab-icon-img-default {
  display: none;
}

.tour-tab.is-active .tour-tab-icon-img-active {
  display: block;
}

.tour-tab[data-tab="feedback"].is-active .tour-tab-icon-img-active {
  filter: brightness(0) invert(1);
}

.tour-tab[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
}

.tour-panels {
  margin-top: 54px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}

.tour-panels > .tour-content {
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: center;
  gap: 20px;
  align-items: center;
  text-align: left;
  display: grid;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.54s var(--ease-standard),
    transform 0.54s var(--ease-standard),
    visibility 0s linear 0.54s;
  will-change: opacity, transform;
}

.tour-panels > .tour-content .tour-copy {
  grid-column: 1;
  grid-row: 1;
}

.tour-panels > .tour-content .tour-preview {
  grid-column: 2;
  grid-row: 1;
}

.tour-panels > .tour-content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
  transition:
    opacity 0.54s var(--ease-standard),
    transform 0.54s var(--ease-standard),
    visibility 0s linear 0s;
}

.tour-panels > .tour-content.is-leaving {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translateY(-10px);
  z-index: 1;
  transition:
    opacity 0.4s var(--ease-standard),
    transform 0.4s var(--ease-standard),
    visibility 0s linear 0.4s;
}

.tour-panels > .tour-content[hidden] {
  display: none !important;
}

.tour-panels > .tour-content.is-active:not(.is-leaving) .tour-copy {
  animation: tour-panel-copy-in 0.6s var(--ease-standard) both;
}

.tour-panels > .tour-content.is-active:not(.is-leaving) .tour-preview {
  animation: tour-panel-preview-in 0.64s var(--ease-standard) 0.1s both;
}

@keyframes tour-panel-copy-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

@keyframes tour-panel-preview-in {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-panels > .tour-content {
    transition: none;
    transform: none;
  }

  .tour-panels > .tour-content.is-active:not(.is-leaving) .tour-copy,
  .tour-panels > .tour-content.is-active:not(.is-leaving) .tour-preview {
    animation: none;
  }
}

.tour-content {
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: center;
  gap: 20px;
  align-items: center;
  text-align: left;
  width: 100%;
}

.tour-copy {
  max-width: 520px;
  width: 100%;
  justify-self: start;
  align-self: center;
  margin-inline-start: 0;
  padding-inline-end: 0;
}

.tour-mark {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(178, 14, 37, 0.08);
  color: #b20e25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tour-mark svg {
  width: 18px;
  height: 18px;
}

.tour-mark img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.tour-panel-title {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  font: 700 clamp(22px, 3vw, 30px) / 1.18 var(--font-sans);
}

.tour-panel-subtitle {
  color: rgba(15, 23, 42, 0.62);
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
  margin-top: 14px;
}

.tour-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.tour-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(15, 23, 42, 0.68);
  font-size: 15.5px;
  font-weight: 500;
}

.tour-point-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-point-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("/images/icons/check-mark-red.png");
}

.tour-preview {
  display: flex;
  justify-content: center;
  justify-self: start;
  position: relative;
  width: auto;
}

.tour-preview-image {
  height: 560.32px;
  width: auto;
  max-width: 100%;
  border-radius: 35px;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 70px 140px rgba(2, 6, 23, 0.25));
}

.tour-preview::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(178, 14, 37, 0.14), rgba(178, 14, 37, 0));
  filter: blur(2px);
  pointer-events: none;
}

.tour-phone {
  height: clamp(520px, 58vw, 680px);
  aspect-ratio: 390 / 844;
  width: auto;
  border-radius: 62px;
  background: #0b0b0d;
  box-shadow: 0 70px 140px rgba(2, 6, 23, 0.25);
  position: relative;
  z-index: 1;
}

.tour-phone::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 62px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.tour-phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 34px;
  border-radius: 999px;
  background: #050608;
}

.tour-phone-screen {
  position: absolute;
  inset: 14px;
  border-radius: 50px;
  background: #f3f4f8;
  overflow: hidden;
}

.tour-queue-header {
  background: #b20e25;
  padding: 16px 18px 14px;
  color: rgba(255, 255, 255, 0.94);
}

.tour-queue-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-size: 12px;
}

.tour-queue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.tour-queue-title {
  margin-top: 10px;
  display: grid;
  gap: 2px;
}

.tour-queue-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.tour-queue-sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 800;
}

.tour-queue-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tour-metric {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 12px 10px;
  color: rgba(15, 23, 42, 0.9);
  text-align: center;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

.tour-metric-num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tour-metric-unit {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.7;
}

.tour-metric-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.65;
}

.tour-queue-list {
  padding: 14px 14px 74px;
  display: grid;
  gap: 12px;
}

.tour-row {
  display: grid;
  grid-template-columns: 56px 1fr 98px;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.08);
}

.tour-token {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(178, 14, 37, 0.06);
  border: 1px solid rgba(178, 14, 37, 0.12);
  color: #b20e25;
  font-weight: 900;
  font-size: 14px;
}

.tour-person-name {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
  line-height: 1.1;
}

.tour-person-sub {
  margin-top: 4px;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 800;
}

.tour-state {
  border-radius: 999px;
  padding: 8px 10px;
  display: grid;
  gap: 2px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-state-title {
  font-size: 11px;
  font-weight: 900;
}

.tour-state-sub {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.75;
}

.tour-state.called {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.16);
  color: #2563eb;
}

.tour-state.waiting {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.18);
  color: #b45309;
}

.tour-state.arrived {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.18);
  color: #16a34a;
}

.tour-queue-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 46px;
  border-radius: 16px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.tour-phone.dashboard {
  width: 272px;
  position: relative;
  height: 560.32px;
  background: #0b0b0d;
}

.tour-phone-screen.dashboard {
  background: #ffffff;
}

.dash-top {
  padding: 14px 16px 8px;
}

.dash-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  font-size: 12px;
}

.dash-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dash-bell {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  position: relative;
}

.dash-bell::after {
  content: "";
  position: absolute;
  inset: 7px 8px 9px;
  border-radius: 6px 6px 8px 8px;
  border: 2px solid rgba(15, 23, 42, 0.5);
  border-bottom: none;
}

.dash-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
}

.dash-head {
  margin-top: 10px;
}

.dash-title {
  font-size: 16px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.dash-sub {
  margin-top: 2px;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 800;
}

.dash-cards {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-card {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px 12px;
}

.dash-card-kicker {
  font-size: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.52);
}

.dash-card-num {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.02em;
}

.dash-card-unit {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.6;
  margin-left: 2px;
}

.dash-card-meta {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 900;
}

.dash-card-meta.up {
  color: #16a34a;
}

.dash-card-meta.down {
  color: #16a34a;
}

.dash-card-meta.warn {
  color: #f59e0b;
}

.dash-section {
  padding: 14px 16px 70px;
}

.dash-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.dash-section-title {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
}

.dash-section-link {
  font-size: 11px;
  font-weight: 900;
  color: #b20e25;
}

.dash-rows {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.dash-row {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.06);
}

.dash-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
}

.dash-badge.green {
  background: #16a34a;
}

.dash-row-name {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.dash-row-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.5);
}

.dash-row-actions {
  display: inline-flex;
  gap: 10px;
}

.dash-action {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.9);
}

.dash-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 8px 10px;
}

.dash-nav-item {
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.55);
}

.dash-nav-item.active {
  color: #b20e25;
}

.tour-tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tour-tab:disabled:hover {
  background: rgba(255, 255, 255, 0.9);
}

.tour-phone.whatsapp {
  background: #0b0b0d;
}

.tour-phone-screen.whatsapp {
  background: #e8e0d8;
}

.tour-wa-topbar {
  background: #0b6b5c;
  color: rgba(255, 255, 255, 0.96);
  padding: 16px 16px 12px;
}

.tour-wa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
}

.tour-wa-sys {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-wa-bars {
  width: 16px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 3px, transparent 3px 4px, rgba(255, 255, 255, 0.95) 4px 7px, transparent 7px 8px, rgba(255, 255, 255, 0.95) 8px 11px, transparent 11px 12px, rgba(255, 255, 255, 0.95) 12px 16px);
  border-radius: 2px;
  opacity: 0.95;
}

.tour-wa-wifi {
  width: 14px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
  border-radius: 50%;
  transform: translateY(2px);
}

.tour-wa-battery {
  width: 22px;
  height: 12px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  position: relative;
}

.tour-wa-battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.95);
}

.tour-wa-battery-fill {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 68%;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
}

.tour-wa-header {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.tour-wa-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-wa-back {
  font-size: 22px;
  line-height: 1;
  opacity: 0.95;
}

.tour-wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.tour-wa-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tour-wa-sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 800;
  margin-top: 2px;
}

.tour-wa-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tour-wa-action {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 0.8;
}

.tour-wa-thread {
  padding: 14px 14px 70px;
}

.tour-wa-day {
  width: fit-content;
  margin: 4px auto 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(248, 238, 190, 0.92);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 900;
  font-size: 12px;
}

.tour-wa-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 12px 12px;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.1);
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.28;
  color: rgba(15, 23, 42, 0.9);
  background: rgba(255, 255, 255, 0.96);
}

.tour-wa-bubble.out {
  margin-left: auto;
  background: #d5f4bf;
}

.tour-wa-bubble-top {
  font-weight: 900;
  color: #0b6b5c;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.tour-wa-meta {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(15, 23, 42, 0.5);
  text-align: right;
  font-weight: 800;
}

.tour-wa-check {
  color: #2aa7ff;
  margin-left: 6px;
}

.tour-wa-compose {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-wa-input {
  height: 42px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(15, 23, 42, 0.4);
  font-size: 11px;
  font-weight: 800;
}

.tour-wa-send {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #22c55e;
  color: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.features {
  background: #ffffff;
  padding: 86px 0 92px;
}

.features-inner {
  text-align: center;
}

.features-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.features-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.features-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.features-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.features-title {
  margin: 14px auto 0;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px) / 1.12 var(--font-sans);
}

.features-subtitle {
  margin: 12px auto 0;
  max-width: 660px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 19px;
  line-height: 1.6;
}

.features-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.05);
  min-height: 126px;
  transition:
    transform 0.28s var(--ease-standard),
    box-shadow 0.28s var(--ease-standard),
    border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.12);
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: center;
  height: 100%;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.05);
  transition:
    transform 0.28s var(--ease-standard),
    box-shadow 0.28s var(--ease-standard),
    border-color 0.28s ease;
}

.feature-card-wide:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.12);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(178, 14, 37, 0.08);
  color: #b20e25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    transform 0.28s var(--ease-standard),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: rgba(178, 14, 37, 0.12);
}

.feature-icon.primary {
  width: 56px;
  height: 56px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.feature-card:hover .feature-icon.primary {
  background: #c40022;
  box-shadow: 0 14px 28px rgba(178, 14, 37, 0.28);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.feature-copy {
  margin-top: 10px;
}

.feature-card-wide .feature-copy {
  margin-top: 0;
}

.feature-title {
  margin: 0;
  line-height: 1.3;
  color: rgba(15, 23, 42, 0.9);
  font: 700 19px var(--font-sans);
  letter-spacing: -0.01px;
}

.feature-text {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, 0.55);
  font: 400 14.5px / 1.5 var(--font-sans);
  margin-top: 6px;
  max-width: 320px;
}

.industries {
  background: #f8fafc;
  padding: 86px 0 92px;
}

.industries-inner {
  text-align: center;
}

.industries-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.industries-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.industries-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.industries-title {
  margin: 14px 0 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px) / 1.12 var(--font-sans);
}

.industries-subtitle {
  margin: 12px auto 0;
  max-width: 660px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 19px;
  line-height: 1.6;
}

.industries-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}

.industry-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.05);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.32s ease,
    border-color 0.28s ease;
  transform: none;
}

.industry-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(185, 28, 28, 0.24);
  box-shadow: 0 22px 48px rgba(178, 14, 37, 0.14);
}

.industry-card::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(178, 14, 37, 0.05);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.industry-card:hover::after {
  transform: scale(1.45);
  background: rgba(178, 14, 37, 0.14);
}

.industry-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(178, 14, 37, 0.08);
  color: #b20e25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.3, 0.64, 1),
    background 0.28s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(178, 14, 37, 0.15);
}

.industry-icon svg {
  width: 23px;
  height: 23px;
}

.industry-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.industry-title {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(15, 23, 42, 0.9);
  font: 700 16.5px var(--font-sans);
  letter-spacing: -0.01;
  transition: color 0.28s ease;
}

.industry-card:hover .industry-title {
  color: #b20e25;
}

.industry-text {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.55);
  font: 400 13.5px var(--font-sans);
}

.compare {
  background: #ffffff;
  padding-bottom: 50px;
}

.compare-inner {
  text-align: center;
  padding: 86px 0 92px;
}

.compare-kicker {
  color: rgba(185, 28, 28, 0.9);
  font: 600 13px var(--font-sans);
  margin-bottom: 22px;
}

.compare-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.compare-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.compare-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.compare-title {
  margin: 14px auto 0;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px)/1.12 var(--font-sans);
}

.compare-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.compare-card {
  position: relative;
  border-radius: 18px;
  padding: 28px;
  min-height: 190px;
  overflow: hidden;
}

.compare-card.before {
  border: 1px solid var(--border);
}

.compare-card.after {
  background: linear-gradient(135deg, #b2001d 0%, #9c0018 100%);
  color: rgba(255, 255, 255, 0.96);
}

.compare-card.after::after {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f1f4;
  color: #6e7280;
  font: 600 13px var(--font-sans);
}

.compare-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.compare-pill.after {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
}

.compare-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.compare-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(15, 23, 42, 0.58);
  font: 400 15px/1.4 var(--font-sans);
}

.compare-list.strong li {
  color: rgba(255, 255, 255, 0.96);
  font: 500 15px/1.4 var(--font-sans);
}

.compare-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: 0.8;
  margin-top: 4px;
}

.compare-dot.before {
  border: 0;
  border-radius: 0;
  opacity: 1;
  color: rgba(15, 23, 42, 0.35);
  background: center / contain no-repeat url("/images/icons/minus.png");
}

.compare-dot.after {
  border: 0;
  border-radius: 0;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  background: center / contain no-repeat url("/images/icons/check-mark.png");
}

.analytics {
  background: #f8fafc;
  padding-bottom: 60px;
}

.analytics-inner {
  text-align: center;
  padding: 86px 0 92px;
}

.analytics-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(185, 28, 28, 0.9);
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.analytics-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.analytics-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.analytics-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.analytics-title {
  margin: 14px auto 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px)/1.12 var(--font-sans);
}

.analytics-subtitle {
  margin: 12px auto 0;
  max-width: 660px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 18px;
  line-height: 1.6;
}

.analytics-showcase {
  margin-top: 34px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 70px;
  align-items: center;
}

.analytics-showcase .tour-preview {
  justify-self: center;
}

.analytics-phone {
  width: 140px;
  height: 286px;
  border-radius: 32px;
  background: #0b0b0d;
  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.22);
  position: relative;
}

.analytics-phone::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.analytics-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 16px;
  border-radius: 999px;
  background: #050608;
}

.analytics-screen {
  position: absolute;
  inset: 8px;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.analytics-top {
  padding: 10px 10px 0;
}

.analytics-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

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

.analytics-bars {
  width: 10px;
  height: 6px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0 2px, transparent 2px 3px, rgba(15, 23, 42, 0.9) 3px 5px, transparent 5px 6px, rgba(15, 23, 42, 0.9) 6px 8px, transparent 8px 9px, rgba(15, 23, 42, 0.9) 9px 10px);
}

.analytics-wifi {
  width: 9px;
  height: 6px;
  border: 1.5px solid rgba(15, 23, 42, 0.9);
  border-color: rgba(15, 23, 42, 0.9) transparent transparent transparent;
  border-radius: 50%;
  transform: translateY(1px);
}

.analytics-battery {
  width: 12px;
  height: 7px;
  border-radius: 2px;
  border: 1.5px solid rgba(15, 23, 42, 0.9);
  position: relative;
}

.analytics-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 1.5px;
  height: 3px;
  background: rgba(15, 23, 42, 0.9);
}

.analytics-battery-fill {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  width: 65%;
  border-radius: 1px;
  background: rgba(15, 23, 42, 0.9);
}

.analytics-head {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics-app-title {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.analytics-app-sub {
  margin-top: 2px;
  font-size: 7px;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 800;
}

.analytics-avatar {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 7px;
  font-weight: 900;
}

.analytics-mini-cards {
  padding: 8px 10px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.analytics-mini-card,
.analytics-chart-card {
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 8px 8px;
}

.mini-label {
  font-size: 6px;
  color: rgba(15, 23, 42, 0.45);
  font-weight: 900;
}

.mini-value {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.mini-unit {
  font-size: 7px;
  opacity: 0.65;
}

.mini-meta {
  margin-top: 3px;
  font-size: 6px;
  font-weight: 900;
}

.mini-meta.green {
  color: #16a34a;
}

.mini-meta.orange {
  color: #f59e0b;
}

.analytics-chart-card {
  margin: 8px 10px 0;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.78);
}

.chart-pill {
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.45);
}

.chart-bars {
  margin-top: 8px;
  height: 34px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.bar {
  width: 14px;
  border-radius: 4px 4px 2px 2px;
  background: rgba(15, 23, 42, 0.1);
}

.bar.h1 { height: 16px; }
.bar.h2 { height: 18px; }
.bar.h3 { height: 14px; }
.bar.h4 { height: 28px; }
.bar.h5 { height: 26px; }
.bar.active { background: #b20e25; }

.chart-labels {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: rgba(15, 23, 42, 0.4);
  font-weight: 900;
}

.pie-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  align-items: center;
}

.pie-chart {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(#16a34a 0 62%, #2563eb 62% 82%, #f59e0b 82% 94%, rgba(15, 23, 42, 0.08) 94% 100%);
}

.pie-legend {
  display: grid;
  gap: 4px;
  font-size: 6px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 900;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 4px;
}

.legend-dot.green { background: #16a34a; }
.legend-dot.blue { background: #2563eb; }
.legend-dot.yellow { background: #f59e0b; }
.legend-dot.red { background: #ef4444; }

.analytics-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  font-size: 6px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.45);
}

.analytics-nav .active {
  color: #b20e25;
}

.analytics-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.05);
  height: 100%;
}

.analytics-card-label {
  display: inline-flex;
  align-items: center;
  color: rgba(15, 23, 42, 0.5);
  font: 500 12.5px var(--font-sans);
  gap: 8px;
}

.analytics-card-label-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.analytics-card-value {
  margin-top: 12px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.analytics-unit {
  font-size: 18px;
  opacity: 0.65;
}

.analytics-card-meta {
  margin-top: 8px;
  font: 600 12px var(--font-sans);
}

.analytics-card-meta.red {
  color: #a8001a;
}

.analytics-card-meta.green {
  color: #16a34a;
}

.analytics-card-meta.orange {
  color: #f59e0b;
}

.proof {
  background: #ffffff;
}

.proof-inner {
  text-align: center;
  padding: 86px 0 92px;
}

.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8001a;
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.proof-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.proof-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.proof-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.proof-title {
  margin: 14px auto 0;
  max-width: 620px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px)/1.12 var(--font-sans);
}

.proof-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.proof-stat {
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 16px;
  padding: 24px 12px;
}

.proof-stat-value {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #a8001a;
}

.proof-stat-label {
  margin-top: 4px;
  color: rgba(15, 23, 42, 0.52);
  font: 500 13.5px var(--font-sans);
}

.proof-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-card {
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.05);
  height: 100%;
}

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

.proof-star {
  color: #fbbf24;
  font-size: 18px;
  line-height: 1;
  display: block;
}

.proof-quote {
  margin: 16px 0 0;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.68);
  font: 400 15.5px/1.55 var(--font-sans);
}

.proof-person {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font: 700 15.12px var(--font-sans);
}

.proof-avatar.wine { background: rgb(168, 0, 26); }
.proof-avatar.blue { background: #2563eb; }
.proof-avatar.teal { background: #14b8a6; }

.proof-name {
  color: rgba(15, 23, 42, 0.88);
  font: 700 14px var(--font-sans);
}

.proof-role {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.45);
  font: 700 14px var(--font-sans);
}

.proof-brands-kicker {
  margin-top: 52px;
  letter-spacing: 0.16em;
  color: rgba(15, 23, 42, 0.45);
  font: 600 11.5px var(--font-sans);
  margin-bottom: 22px;
}

.proof-brands {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: #9ca0ae;
  font: 600 19px var(--font-sans);
  letter-spacing: -0.01em;
}

.pricing {
  padding: 92px 0 96px;
  background: #f8fafc;
}

.pricing-inner {
  text-align: center;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8001a;
  letter-spacing: 0.04em;
  font: 600 12.5px var(--font-sans);
}

.pricing-kicker-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.pricing-kicker-icon svg {
  width: 14px;
  height: 14px;
}

.pricing-kicker-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.pricing-title {
  margin: 14px auto 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font: 700 clamp(28px, 4.4vw, 42px)/1.12 var(--font-sans);
}

.pricing-subtitle {
  margin: 12px auto 0;
  max-width: 620px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 18px;
  line-height: 1.6;
}

.pricing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  align-items: end;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 36px 28px 28px;
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.06);
  min-height: 100%;
}

.price-card.featured {
  border-color: rgba(178, 14, 37, 0.7);
  box-shadow: 0 24px 52px rgba(178, 14, 37, 0.12);
  transform: translateY(-12px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.price-tier {
  color: #15161b;
  font: 700 18px var(--font-sans);
}

.price-name {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
  letter-spacing: -0.02em;
}

.price-note {
  margin-top: 4px;
  min-height: 38px;
  line-height: 1.5;
  color: #6e7280;
  font: 400 13px var(--font-sans);
}

.price-value {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 550;
  color: rgba(15, 23, 42, 0.92);
}

.price-current {
  font: inherit;
  color: inherit;
}

.price-was {
  font-size: 0.50em;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.38);
  text-decoration: line-through;
  letter-spacing: -0.01em;
}

.price-credit-box {
  margin-top: 14px;
  border-radius: 12px;
  background: rgba(178, 14, 37, 0.07);
  border: 1px solid rgba(178, 14, 37, 0.1);
  padding: 12px 14px;
}

.price-credit-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a8001a;
  font: 700 16px var(--font-mono);
}

.price-credit-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.price-credit-sub {
  margin-top: 5px;
  font-size: 11.5px;
  color: #4e5260;
  font-weight: 500;
}

.price-button {
  margin-top: 18px;
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(15, 23, 42, 0.82);
}

.price-button.primary {
  background: #b20e25;
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(178, 14, 37, 0.2);
}

.price-button.secondary {
  background: rgba(255, 255, 255, 0.96);
}

.pricing-volume {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #b2001d 0%, #9c0018 45%, #c40022 100%);
  background-size: 220% 220%;
  animation: signup-promo-gradient 9s ease-in-out infinite;
  box-shadow: 0 20px 48px rgba(156, 0, 24, 0.24);
  text-align: center;
}

.pricing-volume::before,
.pricing-volume::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.pricing-volume::before {
  width: 110px;
  height: 110px;
  left: -36px;
  bottom: -54px;
  background: rgba(255, 255, 255, 0.08);
  animation: signup-promo-orb 7s ease-in-out infinite;
}

.pricing-volume::after {
  width: 130px;
  height: 130px;
  top: -64px;
  right: 40px;
  background: rgba(255, 255, 255, 0.06);
  animation: signup-promo-orb 8s ease-in-out infinite 1.5s;
}

.pricing-volume-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.pricing-volume-shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 46%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.06) 54%,
    transparent 58%
  );
  transform: translateX(-60%) rotate(8deg);
  animation: signup-promo-shine 5.5s ease-in-out infinite;
}

.pricing-volume-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(253, 230, 138, 0.95);
  box-shadow: 0 0 10px rgba(253, 230, 138, 0.65);
  opacity: 0;
  animation: signup-promo-float 4.2s ease-in-out infinite;
}

.pricing-volume-particle:nth-child(2) {
  left: 18%;
  bottom: 20%;
  animation-delay: 0s;
}

.pricing-volume-particle:nth-child(3) {
  left: 52%;
  bottom: 10%;
  animation-delay: 1.2s;
  width: 4px;
  height: 4px;
}

.pricing-volume-particle:nth-child(4) {
  left: 82%;
  bottom: 24%;
  animation-delay: 2.4s;
  width: 3px;
  height: 3px;
}

.pricing-volume-spark {
  position: absolute;
  color: rgba(253, 230, 138, 0.55);
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  animation: signup-promo-spark-bit 5s ease-in-out infinite;
}

.pricing-volume-spark:nth-child(5) {
  left: 24%;
  top: 20%;
  animation-delay: 0.5s;
}

.pricing-volume-spark:nth-child(6) {
  right: 20%;
  top: 26%;
  font-size: 13px;
  animation-delay: 2.8s;
}

.pricing-volume-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font: 500 clamp(15px, 2.2vw, 18px) / 1.55 var(--font-sans);
}

.pricing-volume-text a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.pricing-volume-text a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.pricing-volume-rate {
  display: inline-block;
  font-size: 1.45em;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  animation: signup-promo-credits-glow 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-volume {
    animation: none;
    background: linear-gradient(135deg, #b2001d 0%, #9c0018 100%);
  }

  .pricing-volume::before,
  .pricing-volume::after,
  .pricing-volume-shine,
  .pricing-volume-particle,
  .pricing-volume-spark,
  .pricing-volume-rate {
    animation: none;
  }

  .pricing-volume-rate {
    color: #fff9e6;
    transform: none;
  }
}

.pricing-includes {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.04);
  text-align: left;
}

.pricing-includes-main {
  display: grid;
  gap: 14px;
}

.pricing-includes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-includes-title {
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  font: 700 15px var(--font-sans);
}

.pricing-includes-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 20px;
}

.pricing-include-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.76);
}

.pricing-include-item::before {
  content: "";
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("/images/icons/check-mark-red.png");
  flex: none;
}

.pricing-includes-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.45);
  white-space: nowrap;
}

.pricing-includes-note::before {
  content: "i";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 23, 42, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  color: rgba(15, 23, 42, 0.5);
  flex: none;
}

.demo-cta {
  padding: 0 0 96px;
  background: #f8fafc;
}

.demo-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #b2001d 0%, #9c0018 100%);
  min-height: 408px;
  padding: clamp(10px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
  gap: 56px;
  align-items: center;
}

.demo-cta-panel::before,
.demo-cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.demo-cta-panel::before {
  width: 190px;
  height: 190px;
  left: -62px;
  bottom: -92px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-cta-panel::after {
  width: 210px;
  height: 210px;
  top: -110px;
  right: 72px;
  background: rgba(255, 255, 255, 0.06);
}

.demo-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.96);
}

.demo-cta-title {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.025em;
  font: 700 clamp(28px,4.4vw,44px)/1.1 var(--font-sans);
}

.demo-cta-text {
  margin-top: 25px;
  max-width: 440px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font: 400 clamp(15px,2vw,18px)/1.5 var(--font-sans);
}

.demo-cta-points {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.demo-cta-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.94);
  font: 500 14px var(--font-sans);
}

.demo-cta-point::before {
  content: "";
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("/images/icons/check-mark-white.png");
  flex: none;
}

.demo-cta-contact {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.demo-cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  font: 500 14px var(--font-sans);
  transition: color 0.15s ease;
}

.demo-cta-contact-link:hover {
  color: #ffffff;
}

.demo-cta-contact-link svg {
  width: 16px;
  height: 16px;
  flex: none;
  opacity: 0.92;
}

.demo-card {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
}

.demo-card-header {
  text-align: center;
}

.demo-card-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.demo-card-subtitle {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.42);
}

.demo-form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.demo-field {
  display: grid;
  gap: 7px;
}

.demo-field.is-invalid .demo-input,
.demo-field.is-invalid .demo-textarea,
.demo-field.is-invalid .demo-select-trigger,
.demo-phone.is-invalid {
  border-color: #b2001d;
  box-shadow: 0 0 0 3px rgba(178, 0, 29, 0.1);
}

.demo-label-optional {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.38);
}

.demo-textarea {
  width: 100%;
  min-height: 88px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.82);
  font: 500 13px/1.5 var(--font-sans);
  resize: vertical;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.demo-textarea:focus {
  outline: none;
  border-color: #a8001a;
  box-shadow: 0 0 0 3px rgba(168, 0, 26, 0.14);
}

.demo-textarea::placeholder {
  color: rgba(15, 23, 42, 0.42);
  font-weight: 500;
}

.demo-field-error {
  font-size: 11px;
  line-height: 1.4;
  color: #b2001d;
}

.demo-field-error[hidden] {
  display: none;
}

.demo-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.52);
}

.demo-input,
.demo-phone {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.82);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.demo-input:focus,
.demo-select-trigger:focus {
  outline: none;
  border-color: #a8001a;
  box-shadow: 0 0 0 3px rgba(168, 0, 26, 0.14);
}

.demo-input::placeholder,
.demo-phone-input::placeholder {
  color: rgba(15, 23, 42, 0.42);
  font-weight: 500;
}

.demo-input {
  padding: 0 12px;
  appearance: none;
}

.demo-custom-select {
  position: relative;
}

.demo-select-trigger {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.42);
  font: 500 13px var(--font-sans);
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    color 0.15s;
}

.demo-select-trigger.has-value {
  color: rgba(15, 23, 42, 0.82);
}

.demo-custom-select.is-open .demo-select-trigger,
.demo-custom-select:focus-within .demo-select-trigger,
.demo-select-trigger:focus {
  border-color: #a8001a;
  box-shadow: 0 0 0 3px rgba(168, 0, 26, 0.14);
  color: rgba(15, 23, 42, 0.82);
}

.demo-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.demo-select-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(15, 23, 42, 0.45);
  transition: transform 0.18s var(--ease-standard);
}

.demo-custom-select.is-open .demo-select-chevron {
  transform: rotate(180deg);
}

.demo-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 2px;
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.16s var(--ease-standard),
    transform 0.16s var(--ease-standard);
}

.demo-custom-select.is-open .demo-select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.demo-select-menu[hidden] {
  display: none;
}

.demo-select-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(15, 23, 42, 0.78);
  font: 500 13px var(--font-sans);
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition:
    background 0.12s,
    color 0.12s;
}

.demo-select-option:hover,
.demo-select-option:focus-visible {
  outline: none;
  background: rgba(168, 0, 26, 0.06);
  color: #a8001a;
}

.demo-select-option.is-selected {
  background: rgba(168, 0, 26, 0.08);
  color: #a8001a;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .demo-select-menu,
  .demo-select-chevron {
    transition: none;
  }

  .demo-custom-select.is-open .demo-select-menu {
    transform: none;
  }
}

.demo-phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.demo-phone:focus-within {
  border-color: #a8001a;
  box-shadow: 0 0 0 3px rgba(168, 0, 26, 0.14);
}

.demo-prefix {
  padding-left: 12px;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.48);
}

.demo-phone-input {
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 12px 0 0;
  font: inherit;
  color: rgba(15, 23, 42, 0.82);
}

.demo-submit {
  margin-top: 10px;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: #b2001d;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(178, 0, 29, 0.22);
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.demo-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.demo-form-message {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.demo-recaptcha-notice {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: rgba(15, 23, 42, 0.46);
}

.demo-recaptcha-notice a {
  color: rgba(15, 23, 42, 0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-recaptcha-notice a:hover {
  color: rgba(15, 23, 42, 0.82);
}

.demo-form-message.is-error {
  color: #b2001d;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 32px), 420px);
  padding: 14px 16px;
  border-radius: 12px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.site-toast.is-success {
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.site-toast-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  font-size: 13px;
  font-weight: 700;
}

.site-toast-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.site-toast-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.site-toast-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .site-toast {
    transition: none;
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #b2001d;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(178, 0, 29, 0.28);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s var(--ease-standard),
    transform 0.22s var(--ease-standard),
    visibility 0.22s var(--ease-standard),
    background-color 0.15s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #9c0018;
}

.scroll-top:focus-visible {
  outline: none;
  box-shadow:
    0 12px 28px rgba(178, 0, 29, 0.28),
    0 0 0 3px rgba(178, 0, 29, 0.22);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}

@media (max-width: 640px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

.demo-secondary-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #b2001d;
}

.hero-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.08);
  color: #b20e25;
  font-size: 12px;
  margin-bottom: 24px;
  font-family: var(--font-nav);
}

.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.94);
}

.hero-badge-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.hero-badge-icon svg {
  width: 14px;
  height: 14px;
}

.hero-badge-chip-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  gap: 5px;
  padding: 3px;
}

.hero-badge-text {
  font-weight: 500;
  padding-left: 10px;
}

.hero-title {
  margin: 0;
  font: 700 clamp(34px, 5.2vw, 60px) / 1.05 Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-emphasis {
  color: #b20e25;
}

.hero-subtitle {
  margin-top: 24px;
  color: rgba(15, 23, 42, 0.68);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.6;
}

.hero-subtitle-line {
  display: block;
}

.hero-subtitle strong {
  color: rgba(15, 23, 42, 0.92);
  font-weight: 700;
}

.store-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  background: #0b0f19;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-badge:hover {
  background: #0a1224;
}

.store-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.92);
}

.store-icon svg {
  width: 22px;
  height: 22px;
}

.store-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-kicker {
  font-size: 10px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.store-name {
  font-size: 14px;
  font-weight: 700;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}

.coming-soon-modal.is-open {
  pointer-events: auto;
}

.coming-soon-modal[hidden] {
  display: none;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.60);
  opacity: 0;
  transition: opacity 0.22s var(--ease-standard);
}

.coming-soon-modal.is-open .coming-soon-backdrop {
  opacity: 1;
}

.coming-soon-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  border-radius: 22px;
  padding: 32px 28px 28px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
  border: 1px solid rgba(168, 0, 26, 0.1);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition:
    opacity 0.24s var(--ease-standard),
    transform 0.24s var(--ease-standard);
}

.coming-soon-modal.is-open .coming-soon-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.coming-soon-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.coming-soon-close svg {
  width: 16px;
  height: 16px;
}

.coming-soon-close:hover,
.coming-soon-close:focus-visible {
  outline: none;
  background: rgba(168, 0, 26, 0.08);
  color: #a8001a;
}

.coming-soon-visual {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
}

.coming-soon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
}

.coming-soon-orb-a {
  width: 72px;
  height: 72px;
  top: 8px;
  left: 8px;
  background: rgba(168, 0, 26, 0.35);
  animation: coming-soon-float 4.2s ease-in-out infinite;
}

.coming-soon-orb-b {
  width: 56px;
  height: 56px;
  bottom: 4px;
  right: 2px;
  background: rgba(251, 191, 36, 0.45);
  animation: coming-soon-float 4.2s ease-in-out infinite reverse;
}

.coming-soon-icon-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(168, 0, 26, 0.16);
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #fff1f3 72%);
  box-shadow: 0 10px 24px rgba(168, 0, 26, 0.12);
}

.coming-soon-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #a8001a;
  animation: coming-soon-pulse 2.4s ease-in-out infinite;
}

.coming-soon-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.coming-soon-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8001a;
}

.coming-soon-title {
  margin: 8px 0 0;
  font-size: clamp(26px, 5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.94);
}

.coming-soon-text {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.62);
}

.coming-soon-cta {
  margin-top: 22px;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #c40020 0%, #a8001a 55%, #8f0016 100%);
  color: #ffffff;
  font: 600 14px var(--font-sans);
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(168, 0, 26, 0.24);
  transition:
    transform 0.12s var(--ease-standard),
    box-shadow 0.15s;
}

.coming-soon-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(168, 0, 26, 0.28);
}

.coming-soon-cta:active {
  transform: translateY(0);
}

.coming-soon-cta:focus-visible {
  outline: none;
  box-shadow:
    0 14px 28px rgba(168, 0, 26, 0.24),
    0 0 0 3px rgba(168, 0, 26, 0.2);
}

body.coming-soon-open {
  overscroll-behavior: none;
  touch-action: none;
}

@keyframes coming-soon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes coming-soon-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-orb-a,
  .coming-soon-orb-b,
  .coming-soon-icon {
    animation: none;
  }

  .coming-soon-backdrop,
  .coming-soon-panel {
    transition: none;
  }
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  width: auto;
  height: clamp(360px, 42vw, 580px);
  min-height: clamp(360px, 42vw, 580px);
}

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

.hero-media-image {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
  transform: translateY(-14px);
  filter: drop-shadow(0 24px 48px rgba(2, 6, 23, 0.14));
}

.phone {
  aspect-ratio: 390 / 844;
  height: var(--front-h);
  width: auto;
  --radius: clamp(46px, 5.2vw, 66px);
  --frame: clamp(10px, 1.25vw, 14px);
  border-radius: var(--radius);
  background: #0b0b0d;
  box-shadow: 0 70px 140px rgba(2, 6, 23, 0.28);
  position: absolute;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.phone-front {
  right: 0;
  top: 10px;
  transform: rotate(-2.5deg);
  z-index: 2;
}

.phone-back {
  height: var(--back-h);
  width: auto;
  right: -74px;
  top: 68px;
  transform: rotate(10deg);
  opacity: 0.95;
  z-index: 1;
}

.phone-island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(118px, 16vw, 164px);
  height: clamp(26px, 3.2vw, 34px);
  background: #050608;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.35);
}

.phone-island.small {
  width: clamp(98px, 14vw, 134px);
  height: clamp(22px, 2.8vw, 30px);
}

.phone-screen {
  position: absolute;
  inset: var(--frame);
  border-radius: calc(var(--radius) - var(--frame));
  background: #ffffff;
  overflow: hidden;
  padding: 0;
}

.phone-screen.wa {
  background: #e8e0d8;
}

.wa-topbar {
  background: #0b6b5c;
  color: rgba(255, 255, 255, 0.96);
  padding: 18px 18px 14px;
}

.wa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}

.wa-sys {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wa-sys-icon {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

.wa-battery {
  width: 22px;
  height: 12px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  position: relative;
}

.wa-battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.wa-battery-fill {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 65%;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.wa-header {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.wa-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-icon {
  width: 22px;
  height: 22px;
  opacity: 0.92;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-avatar svg {
  width: 20px;
  height: 20px;
  opacity: 0.95;
}

.wa-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.wa-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 2px;
}

.wa-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.wa-thread {
  padding: 18px 18px 92px;
}

.wa-day {
  width: fit-content;
  margin: 2px auto 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(248, 238, 190, 0.92);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 700;
  font-size: 14px;
}

.wa-bubble {
  width: fit-content;
  max-width: 78%;
  padding: 16px 16px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.12);
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.28;
}

.wa-bubble.wa-in {
  background: rgba(255, 255, 255, 0.96);
  color: rgba(15, 23, 42, 0.92);
}

.wa-bubble.wa-out {
  margin-left: auto;
  background: #d5f4bf;
  color: rgba(15, 23, 42, 0.92);
}

.wa-bubble-top {
  font-weight: 900;
  color: #0b6b5c;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.wa-meta {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.52);
  text-align: right;
}

.wa-check {
  color: #2aa7ff;
  font-weight: 900;
  margin-left: 6px;
}

.wa-compose {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-input {
  height: 52px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.12);
}

.wa-send {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-send svg {
  width: 22px;
  height: 22px;
  transform: translateX(1px);
}

.wa-scan-card {
  position: absolute;
  left: -102px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.wa-qr {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: repeating-linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.9) 0px,
      rgba(15, 23, 42, 0.9) 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(15, 23, 42, 0.9) 0px,
      rgba(15, 23, 42, 0.9) 4px,
      transparent 4px,
      transparent 8px
    );
  opacity: 0.35;
}

.wa-scan-title {
  font-size: 20px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.15;
}

.wa-scan-sub {
  font-size: 16px;
  color: rgba(15, 23, 42, 0.5);
  margin-top: 3px;
  font-weight: 700;
}

.phone-screen.queue {
  background: #f3f4f8;
}

.queue-top {
  background: #b20e25;
  padding: 20px 18px 24px;
}

.queue-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.queue-time {
  font-size: 14px;
}

.queue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

.queue-cards {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.queue-card {
  width: 120px;
  height: 110px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.18);
}

.queue-card-label {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.queue-card-unit {
  font-size: 14px;
  font-weight: 800;
  opacity: 0.65;
  margin-left: 2px;
}

.queue-card-sub {
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.7;
  font-weight: 800;
}

.queue-body {
  padding: 18px 18px 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.queue-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.queue-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
}

.queue-item-title {
  font-size: 16px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.queue-item-sub {
  font-size: 14px;
  margin-top: 3px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
}

.queue-called .queue-dot {
  background: #2563eb;
}

.queue-waiting .queue-dot {
  background: #d97706;
}

.queue-arrived .queue-dot {
  background: #16a34a;
}

.queue-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 54px;
  border-radius: 18px;
  background: #b20e25;
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .store-row {
    justify-content: center;
  }

  .hero-media {
    width: 100%;
    height: auto;
    min-height: auto;
    margin-top: 4px;
    justify-self: center;
    justify-content: center;
  }

  .hero-media-image {
    height: auto;
    width: min(100%, 490px);
    max-height: min(62vh, 530px);
    object-position: center;
    transform: translateY(-10px);
  }

  .phone-front {
    right: 18px;
  }

  .phone-back {
    right: -20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-inner {
    padding: 56px 0 12px;
  }

  .steps-left {
    justify-content: center;
  }

  .steps-right {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .steps-preview {
    width: 100%;
    height: auto;
    max-height: none;
    justify-content: center;
  }

  .steps-preview-image {
    width: min(100%, 420px);
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .how-experience.is-scroll-driven {
    height: auto;
  }

  .how-experience.is-scroll-driven .how-experience-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .how-experience.is-scroll-driven .how-scroll-progress {
    display: none;
  }

  .how-experience.is-scroll-driven .steps {
    display: block;
  }

  .tour-panels > .tour-content,
  .tour-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .tour-panels > .tour-content .tour-copy,
  .tour-panels > .tour-content .tour-preview {
    grid-column: 1;
    grid-row: auto;
  }

  .tour-copy {
    margin: 0;
    max-width: none;
    justify-self: start;
    order: 1;
  }

  .tour-preview {
    order: 2;
    justify-content: center;
    width: 100%;
  }

  .tour-preview::before {
    right: auto;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: min(100%, 320px);
    height: 320px;
  }

  .tour-preview-image {
    height: auto;
    width: min(100%, 420px);
    max-height: none;
    object-fit: contain;
  }

  .tour-points {
    justify-items: start;
  }

  .tour-points li {
    width: 100%;
    grid-template-columns: 22px auto;
    gap: 8px;
    text-align: left;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

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

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

  .analytics-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .analytics-cards {
    grid-template-columns: 1fr 1fr;
  }

  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .price-card.featured {
    transform: none;
  }

  .pricing-includes {
    padding: 18px 18px;
  }

  .pricing-includes-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .demo-cta-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .demo-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 560px) {
  :root {
    --signup-promo-overlap: clamp(54px, 15vw, 72px);
  }

  .signup-promo-panel {
    padding: 16px 18px;
  }

  .signup-promo-text {
    font-size: 14px;
    gap: 10px;
  }

  .signup-promo-sparkle-start svg {
    width: 28px;
    height: 28px;
  }

  .signup-promo-sparkle-end svg {
    width: 22px;
    height: 22px;
  }

  .phone-front {
    right: 8px;
    top: 0;
  }

  .phone-back {
    right: -28px;
    top: 56px;
  }

  .wa-scan-card {
    left: -10px;
    bottom: 12px;
  }

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

  .feature-card-wide {
    grid-column: span 1;
    grid-template-columns: 44px 1fr;
  }

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

  .analytics-cards {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 26px 16px 16px;
  }

  .price-name {
    font-size: 18px;
  }

  .price-value {
    font-size: 32px;
  }

  .pricing-includes {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .pricing-includes-title {
    font-size: 16px;
  }

  .pricing-includes-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-includes-note {
    white-space: normal;
  }

  .demo-cta {
    padding-bottom: 72px;
  }

  .demo-cta-panel {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .demo-cta-title {
    font-size: 22px;
  }

  .demo-cta-text {
    max-width: none;
  }

  .demo-cta-points {
    gap: 10px;
  }

  .demo-card {
    width: 100%;
    padding: 14px 12px 14px;
  }
}

.legal-page {
  background: #ffffff;
}

.legal-section {
  padding: clamp(56px, 7vw, 92px) 0;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  color: #a8001a;
  letter-spacing: 0.08em;
  font: 700 12px var(--font-sans);
}

.legal-title {
  margin: 14px 0 0;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.96);
  font: 700 clamp(34px, 5vw, 54px)/1.04 var(--font-sans);
}

.legal-muted {
  margin: 14px 0 0;
  max-width: 720px;
  color: rgba(15, 23, 42, 0.64);
  font: 400 16.5px/1.7 var(--font-sans);
}

.legal-body {
  margin-top: 28px;
  max-width: 780px;
  color: rgba(15, 23, 42, 0.72);
  font: 400 16px/1.75 var(--font-sans);
}

.legal-body h2 {
  margin: 28px 0 10px;
  color: rgba(15, 23, 42, 0.92);
  font: 700 18px/1.35 var(--font-sans);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  margin: 18px 0 8px;
  color: rgba(15, 23, 42, 0.88);
  font: 700 15.5px/1.4 var(--font-sans);
}

.legal-body p {
  margin: 0 0 12px;
}

.legal-body ul {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}

.legal-body li {
  margin: 6px 0;
}

.legal-body li::marker {
  color: rgba(168, 0, 26, 0.72);
}

.legal-footer-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: rgba(15, 23, 42, 0.55);
  font-size: 14px;
}

.legal-body a {
  color: #a8001a;
  font-weight: 600;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  padding: clamp(48px, 7vw, 84px) 0 28px;
  background:
    radial-gradient(540px 260px at 88% 0%, rgba(168, 0, 26, 0.1) 0%, rgba(168, 0, 26, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  color: #a8001a;
  letter-spacing: 0.08em;
  font: 700 12px var(--font-sans);
}

.contact-title {
  margin: 16px 0 0;
  max-width: 640px;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.96);
  font: 700 clamp(34px, 5vw, 54px)/1.04 var(--font-sans);
}

.contact-subtitle {
  margin: 18px 0 0;
  max-width: 680px;
  color: rgba(15, 23, 42, 0.64);
  font: 400 18px/1.65 var(--font-sans);
}

.contact-hero-badge {
  min-width: 240px;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #b2001d 0%, #8e0016 100%);
  box-shadow: 0 20px 44px rgba(168, 0, 26, 0.18);
  color: rgba(255, 255, 255, 0.96);
}

.contact-hero-badge-label {
  color: rgba(255, 255, 255, 0.72);
  font: 600 12px var(--font-sans);
  letter-spacing: 0.04em;
}

.contact-hero-badge-value {
  margin-top: 8px;
  font: 700 20px/1.3 var(--font-sans);
  letter-spacing: -0.02em;
}

.contact-section {
  padding: 28px 0 88px;
  background: #ffffff;
}

.contact-demo {
  padding: 0 0 28px;
  background: #ffffff;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-map-card,
.contact-info-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.06);
}

.contact-info-card {
  padding: 28px;
}

.contact-card-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.96);
  font: 700 26px/1.1 var(--font-sans);
  letter-spacing: -0.02em;
}

.contact-card-text {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.6);
  font: 400 15px/1.6 var(--font-sans);
}

.contact-map-card {
  overflow: hidden;
}

.contact-map {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-info-list {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.contact-info-item {
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-info-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-info-label {
  margin-bottom: 8px;
  color: #a8001a;
  font: 700 12px var(--font-sans);
  letter-spacing: 0.06em;
}

.contact-info-value,
.contact-info-link {
  display: block;
  color: rgba(15, 23, 42, 0.78);
  font: 500 15px/1.6 var(--font-sans);
}

.contact-info-link:hover {
  color: #a8001a;
}

.blog-page {
  background: #f8fafc;
}

.blog-shell {
  padding: 34px 0 88px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.blog-main-story,
.blog-sidebar {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.06);
}

.blog-main-story {
  overflow: hidden;
}

.blog-main-image {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

.blog-main-copy {
  padding: 28px 28px 32px;
}

.blog-main-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.96);
  letter-spacing: -0.03em;
  font: 800 clamp(34px, 4.6vw, 52px)/1.06 var(--font-sans);
}

.blog-main-excerpt {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(15, 23, 42, 0.62);
  font: 400 17px/1.7 var(--font-sans);
}

.blog-main-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(15, 23, 42, 0.48);
  font: 600 13px var(--font-sans);
}

.blog-category {
  color: #a8001a;
}

.blog-sidebar {
  padding: 24px 28px;
}

.blog-sidebar-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.96);
  font: 700 18px/1.2 var(--font-sans);
}

.blog-sidebar-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: #a8001a;
}

.blog-side-post {
  display: block;
  padding: 28px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-side-post:first-of-type {
  border-top: 0;
  padding-top: 26px;
}

.blog-side-post-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.94);
  font: 700 17px/1.35 var(--font-sans);
}

.blog-side-post-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(15, 23, 42, 0.44);
  font: 600 12.5px var(--font-sans);
}

.blog-side-post .blog-category {
  color: #a8001a;
}

.blog-side-post:hover .blog-side-post-title,
.blog-side-post.is-active .blog-side-post-title {
  color: #0f172a;
}

.blog-more {
  padding: 0 0 88px;
}

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

.blog-card {
  min-width: 0;
}

.blog-card-image {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card-copy {
  padding-top: 14px;
}

.blog-card-title {
  margin: 0;
  color: rgba(15, 23, 42, 0.96);
  font: 700 18px/1.35 var(--font-sans);
}

.blog-card-excerpt {
  margin: 16px 0 0;
  color: rgba(15, 23, 42, 0.58);
  font: 400 15px/1.55 var(--font-sans);
}

.blog-card-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(15, 23, 42, 0.44);
  font: 600 12.5px var(--font-sans);
}

.blog-card .blog-category {
  color: #a8001a;
}

.blog-detail-page {
  background: #f8fafc;
}

.blog-detail-shell {
  padding: 34px 0 88px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.blog-detail-main,
.blog-detail-sidebar {
  min-width: 0;
}

.blog-detail-title {
  margin: 0 0 24px;
  color: rgba(15, 23, 42, 0.96);
  letter-spacing: -0.03em;
  font: 800 clamp(34px, 4.4vw, 52px)/1.08 var(--font-sans);
}

.blog-detail-image {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.blog-detail-meta {
  margin-top: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(15, 23, 42, 0.48);
  font: 500 13px var(--font-sans);
}

.blog-detail-body {
  margin-top: 20px;
  color: rgba(15, 23, 42, 0.78);
  font: 400 17px/1.75 var(--font-sans);
}

.blog-detail-body p {
  margin: 0 0 22px;
}

.blog-detail-body p:last-child {
  margin-bottom: 0;
}

.blog-detail-sidebar-title {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, 0.96);
  font: 700 18px/1.2 var(--font-sans);
}

.blog-detail-related {
  display: grid;
  gap: 22px;
}

.blog-related-card {
  display: block;
}

.blog-related-image {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.blog-related-meta {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.44);
  font: 500 12.5px var(--font-sans);
}

.blog-related-title {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, 0.94);
  font: 700 17px/1.35 var(--font-sans);
}

.site-footer {
  position: relative;
  z-index: 5;
  background: radial-gradient(800px 220px at 40% 0%, rgba(225, 29, 72, 0.35) 0%, rgba(225, 29, 72, 0) 60%),
    #07060a;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff2d55 0%, #ff2d55 35%, #a855f7 100%);
  opacity: 0.95;
}

.footer-top {
  padding: 46px 0 26px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-brand-lockup {
  width: 148px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  margin: 14px 0 16px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

.footer-link {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  color: rgba(255, 255, 255, 0.86);
  margin: 2px 0 6px;
}

.footer-bottom {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.46);
}

.footer-copyright {
  justify-self: start;
}

.footer-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  justify-self: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.46);
}

.footer-powered-by a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.footer-powered-by a:hover {
  opacity: 1;
}

.footer-powered-by img {
  height: 12px;
  width: auto;
  display: block;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  justify-self: end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.46);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-main-image {
    height: 360px;
  }

  .blog-detail-image {
    height: 340px;
  }

  .contact-hero-inner,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-badge {
    min-width: 0;
    max-width: 320px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 993px) {
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    margin-left: -36px;
  }

  .header-menu-panel {
    display: contents;
  }

  .nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-right: -36px;
  }
}

@media (max-width: 1100px) and (min-width: 993px) {
  .nav {
    gap: 18px;
  }

  .header-menu-panel {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  :root {
    --signup-promo-overlap: clamp(40px, 9vw, 52px);
  }

  .content {
    padding-top: clamp(68px, 14vw, 80px);
  }

  .hero {
    padding-top: clamp(28px, 5vw, 36px);
    padding-bottom: calc(var(--signup-promo-overlap) + 22px);
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-media {
    margin-top: 0;
  }

  .hero-media-image {
    width: min(100%, 455px);
    max-height: min(56vh, 490px);
    transform: translateY(-8px);
  }

  .signup-promo-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .signup-promo-panel {
    min-height: auto;
    padding: 18px 20px;
    border-radius: 16px;
  }

  .signup-promo-text {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 12px;
    font-size: clamp(15px, 4vw, 17px);
  }

  .signup-promo-message {
    flex: 0 1 auto;
    text-align: center;
  }

  .signup-promo-credits {
    font-size: 1.45em;
  }

  .signup-promo-sparkle-start svg {
    width: 32px;
    height: 32px;
  }

  .signup-promo-sparkle-end svg {
    width: 26px;
    height: 26px;
  }

  .signup-promo-link {
    align-self: center;
    font-size: 13px;
    padding: 9px 16px;
  }

  .site-header {
    overflow: visible;
    border-bottom: none;
  }

  .site-header.show-border {
    border-bottom: none;
  }

  .site-header .header-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: clamp(68px, 14vw, 80px);
    min-height: clamp(68px, 14vw, 80px);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 12px;
    padding-inline: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    padding: 0;
  }

  .brand-logo {
    height: clamp(38px, 11vw, 52px);
    max-width: calc(100vw - 76px);
  }

  .header-menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .menu-icon svg {
    width: 20px;
    height: 20px;
  }

  .header-menu-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 24px 10px 28px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 26px 50px rgba(2, 6, 23, 0.08);
  }

  .site-header.is-open .header-menu-panel {
    display: flex;
  }

  .nav {
    position: static;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-link {
    padding: 12px 6px;
    font-family: var(--font-nav);
    font-size: 14.4px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.8);
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .action-button {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    font-size: 16px;
    box-shadow: 0 18px 36px rgba(168, 0, 26, 0.18);
  }

  .header-actions .action-arrow {
    font-size: 22px;
    transform: translateY(-1px);
  }
}

@media (max-width: 820px) {
  .content {
    padding-top: clamp(68px, 14vw, 80px);
  }
}

@media (max-width: 560px) {
  :root {
    --signup-promo-overlap: clamp(36px, 10vw, 48px);
  }

  .hero {
    padding-top: 28px;
    padding-bottom: calc(var(--signup-promo-overlap) + 20px);
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-media-image {
    width: min(100%, 380px);
    max-height: min(44vh, 360px);
    transform: translateY(-6px);
  }

  .blog-shell {
    padding-top: 24px;
  }

  .blog-detail-shell {
    padding-top: 24px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-main-image {
    height: 240px;
  }

  .blog-detail-image {
    height: 240px;
  }

  .blog-main-copy,
  .blog-sidebar {
    padding: 20px 18px 22px;
  }

  .blog-card-title {
    font-size: 17px;
  }

  .blog-side-post {
    padding: 20px 0;
  }

  .blog-side-post:first-of-type {
    padding-top: 22px;
  }

  .contact-hero {
    padding-top: 38px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-info-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contact-map {
    height: 260px;
  }

  .header-menu-panel {
    padding: 22px 24px 26px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copyright,
  .footer-bottom-links {
    justify-self: center;
  }
}
