@font-face {
  font-family: "Golos Text";
  src: url("assets/fonts/GolosText-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --blue: #2f69d8;
  --blue-deep: #1853c3;
  --ink: #16171a;
  --muted: #5f626d;
  --text-secondary: var(--muted);
  --line: rgba(26, 28, 34, 0.12);
  --panel: #f7f8fb;
  --panel-warm: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 37, 74, 0.12);
  --font-h1-size: clamp(38px, 4.35vw, 50px);
  --font-section-title-size: clamp(32px, 3.6vw, 46px);
  --font-h1-weight: 600;
  --font-h2-weight: 600;
  --font-h3-weight: 560;
  --font-card-title-weight: var(--font-h3-weight);
  --font-body-weight: 400;
  --font-cta-weight: 560;
  --font-label-weight: 560;
  --font-price-weight: 600;
  --font-price-period-weight: 500;
  --font-final-weight: 560;
  --letter-tight: 0;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 480ms;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Golos Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: inherit;
  line-height: 1.45;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 40px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  transition:
    min-height var(--motion-base) var(--ease-premium),
    padding var(--motion-base) var(--ease-premium),
    background var(--motion-base) ease,
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(26, 28, 34, 0.08);
  box-shadow: 0 10px 34px rgba(18, 28, 56, 0.06);
}

.logo img {
  width: 146px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #22242a;
  font-size: 15px;
  font-weight: 520;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

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

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 48px;
  height: 48px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(47, 105, 216, 0.22);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: var(--font-label-weight);
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-toggle:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.language-toggle:focus-visible,
.language-options button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.language-toggle-icon {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.language-menu.is-open .language-toggle-icon {
  transform: translateY(1px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 86px;
  padding: 6px;
  border: 1px solid rgba(47, 105, 216, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: var(--font-label-weight);
  line-height: 1;
}

.language-options button:hover,
.language-options button[aria-selected="true"] {
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: var(--font-cta-weight);
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--motion-fast) var(--ease-premium),
    box-shadow var(--motion-base) ease,
    background var(--motion-base) ease,
    border-color var(--motion-base) ease,
    color var(--motion-base) ease,
    opacity var(--motion-base) ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(47, 105, 216, 0.24);
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 18px 40px rgba(47, 105, 216, 0.28), 0 0 0 5px rgba(47, 105, 216, 0.08);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(22, 23, 26, 0.32);
}

.button-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(25, 37, 74, 0.1);
}

.button-dark {
  color: var(--white);
  background: #16171a;
}

.button-light {
  color: var(--blue-deep);
  background: var(--white);
}

.button-lg {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  min-height: auto;
  padding: 56px 0 42px;
}

.hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  animation: premium-hero-in var(--motion-slow) var(--ease-premium) 60ms both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: var(--font-label-weight);
  letter-spacing: var(--letter-tight);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1180px;
  margin: 0 auto 22px;
  font-size: var(--font-h1-size);
  font-weight: var(--font-h1-weight);
  line-height: 1.08;
  letter-spacing: var(--letter-tight);
}

.hero-accent {
  color: var(--blue);
}

.hero-type {
  position: relative;
  display: inline-grid;
  vertical-align: baseline;
}

.hero-type::before,
.hero-type-text {
  grid-area: 1 / 1;
}

.hero-type::before {
  content: attr(data-hero-type-value);
  visibility: hidden;
  white-space: nowrap;
}

.hero-type-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.hero-type.is-typing .hero-type-text {
  animation: hero-type-reveal 640ms steps(var(--hero-type-steps, 10), end) 240ms both;
}

.hero-type.is-typing::after {
  position: absolute;
  top: 0.13em;
  bottom: 0.09em;
  left: 0;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  animation: hero-type-caret 880ms steps(var(--hero-type-steps, 10), end) 240ms both;
}

.h1-nowrap {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  animation: premium-hero-in var(--motion-slow) var(--ease-premium) 180ms both;
}

.hero-proof {
  width: 100%;
  max-width: 860px;
  margin: 10px auto 0;
  text-align: center;
  animation: premium-hero-in var(--motion-slow) var(--ease-premium) 110ms both;
}

.hero-proof-eyebrow {
  margin: 0 0 8px;
  color: rgba(22, 23, 26, 0.72);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 560;
  line-height: 1.35;
}

.hero-proof-main {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.35vw, 56px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-proof-metrics {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: start;
  gap: 0;
  max-width: 100%;
  margin: 28px auto 0;
}

.hero-proof-metric {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  padding: 0 clamp(22px, 3.2vw, 42px);
  text-align: center;
}

.hero-proof-metric + .hero-proof-metric::before {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  content: "";
  background: rgba(72, 78, 90, 0.18);
}

.hero-proof-metric strong {
  color: rgba(22, 23, 26, 0.88);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-proof-metric span {
  color: rgba(72, 78, 90, 0.82);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 430;
  line-height: 1.25;
}

@keyframes premium-hero-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes hero-type-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-type-caret {
  0% {
    left: 0;
    opacity: 0;
  }

  8%,
  74% {
    opacity: 0.72;
  }

  82%,
  100% {
    left: calc(100% - 1px);
    opacity: 0;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
  border-radius: 42px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), rgba(247, 247, 248, 0.94) 58%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  animation: premium-image-in var(--motion-slow) var(--ease-premium) 220ms both;
}

@keyframes premium-image-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--motion-slow) var(--ease-premium),
    transform var(--motion-slow) var(--ease-premium);
}

.motion-ready .motion-stagger > * {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .motion-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--motion-slow) var(--ease-premium),
    transform var(--motion-slow) var(--ease-premium);
  transition-delay: calc(var(--motion-index, 0) * 80ms);
}

.guest-blindspot {
  margin: 18px auto 108px;
  padding: 42px;
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 42px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  box-shadow: 0 22px 58px rgba(25, 37, 74, 0.07);
}

.guest-blindspot-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
  margin-bottom: 26px;
}

.guest-blindspot h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: var(--font-h2-weight);
  line-height: 1.05;
  letter-spacing: 0;
}

.guest-blindspot h2 span {
  color: var(--blue);
}

.guest-blindspot-head p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.guest-blindspot-label {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  padding-top: 10px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
  text-align: right;
}

.blindspot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.95fr);
  gap: 16px;
}

.blindspot-side {
  display: grid;
  gap: 16px;
}

.blindspot-card {
  min-width: 0;
  border: 1px solid rgba(26, 28, 34, 0.065);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(25, 37, 74, 0.06);
}

.blindspot-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: var(--font-card-title-weight);
  line-height: 1.12;
  letter-spacing: 0;
}

.blindspot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.blindspot-card-large {
  min-height: 326px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f3f6fb 100%);
}

.blindspot-card-large .blindspot-card-copy {
  max-width: 560px;
}

.visit-drop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  margin-top: 22px;
  padding-top: 14px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: start;
  min-height: 104px;
  padding: 8px 6px 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  text-align: center;
  z-index: 1;
}

.timeline-value {
  font-size: clamp(23px, 2.35vw, 32px);
  font-weight: var(--font-price-weight);
  line-height: 1.05;
}

.timeline-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: var(--font-label-weight);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-item::after {
  position: absolute;
  right: -22px;
  top: calc(8px + (clamp(23px, 2.35vw, 32px) * 0.525));
  content: "→";
  color: rgba(47, 105, 216, 0.36);
  font-size: 22px;
  font-weight: var(--font-label-weight);
  transform: translateY(-50%);
}

.timeline-item:nth-child(2) {
  color: rgba(22, 23, 26, 0.78);
}

.timeline-item:nth-child(3) {
  color: rgba(22, 23, 26, 0.66);
}

.timeline-item-final {
  color: var(--blue-deep);
}

.timeline-item-final::after {
  display: none;
}

.blindspot-card-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 164px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(25, 37, 74, 0.045);
}

.broadcast-metric {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: var(--font-final-weight);
  line-height: 1.1;
}

.broadcast-metric span + span {
  color: var(--blue-deep);
}

.broadcast-metric span + span::before {
  content: "→";
  margin-right: 10px;
  color: rgba(47, 105, 216, 0.5);
}

.data-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.data-pills span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(22, 23, 26, 0.78);
  background: transparent;
  font-size: 14px;
  font-weight: 520;
}

.data-pills span + span::before {
  position: absolute;
  left: -17px;
  width: 11px;
  content: "";
  border-top: 1px dashed rgba(95, 98, 109, 0.34);
}

.data-pills span:nth-child(2) {
  transform: translateY(0);
}

.data-pills span:nth-child(3) {
  transform: translateY(0);
}

.blindspot-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: center;
  padding: 16px 28px;
}

.blindspot-card-wide .blindspot-card-copy {
  max-width: 480px;
}

.guest-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 10px 18px;
}

.guest-compare div {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.guest-compare strong,
.guest-compare span,
.guest-compare em {
  display: block;
}

.guest-compare span {
  margin-bottom: 12px;
  color: rgba(95, 98, 109, 0.78);
  font-size: 13px;
  font-style: normal;
  font-weight: 540;
  letter-spacing: 0;
}

.guest-compare strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(25px, 2.45vw, 34px);
  font-weight: var(--font-price-weight);
  line-height: 0.98;
}

.guest-compare em {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: normal;
  font-weight: var(--font-final-weight);
}

.guest-compare b {
  color: rgba(47, 105, 216, 0.85);
  font-size: 34px;
  font-weight: var(--font-price-weight);
}

.guest-journey {
  margin: -56px auto 108px;
  padding: 46px;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 28px 74px rgba(25, 37, 74, 0.1);
}

.guest-journey-sticky {
  position: relative;
  z-index: 1;
}

.guest-journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
  margin-bottom: 38px;
}

.guest-journey h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4.35vw, 54px);
  font-weight: var(--font-h2-weight);
  line-height: 1.05;
  letter-spacing: 0;
}

.guest-journey h2 span {
  color: var(--blue);
}

.guest-journey-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.guest-journey-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 190px;
  padding-top: 12px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
  text-align: right;
}

.guest-journey-body {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1.44fr);
  gap: 34px;
  align-items: stretch;
}

.journey-steps {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
}

.journey-steps::before {
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(47, 105, 216, 0.18), rgba(95, 98, 109, 0.12));
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-height: 78px;
  padding: 14px 16px 14px 0;
  border: 0;
  border-radius: 0;
  color: rgba(95, 98, 109, 0.76);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.28s ease, transform 0.28s ease;
}

.journey-step:hover,
.journey-step:focus-visible {
  color: var(--ink);
}

.journey-step:focus-visible {
  outline: 2px solid rgba(47, 105, 216, 0.34);
  outline-offset: 4px;
  border-radius: 16px;
}

.journey-step span {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(26, 28, 34, 0.1);
  border-radius: 50%;
  color: rgba(95, 98, 109, 0.72);
  background: #ffffff;
  font-size: 12px;
  font-weight: var(--font-label-weight);
  line-height: 1;
  z-index: 1;
  transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.journey-step strong,
.journey-step em {
  display: block;
  min-width: 0;
}

.journey-step strong {
  margin-top: 1px;
  color: currentColor;
  font-size: 18px;
  font-weight: var(--font-card-title-weight);
  line-height: 1.16;
}

.journey-step em {
  grid-column: 2;
  max-height: 0;
  overflow: hidden;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease;
}

.journey-step.is-active {
  color: var(--blue-deep);
}

.journey-step.is-active span {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(47, 105, 216, 0.24);
}

.journey-step.is-active em {
  max-height: 72px;
  margin-top: 6px;
  opacity: 1;
  transform: translateY(0);
}

.journey-scene {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 34, 0.075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 105, 216, 0.12), transparent 34%),
    linear-gradient(145deg, #fbfcff 0%, #ffffff 55%, #f4f7fd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 20px 52px rgba(25, 37, 74, 0.08);
}

.journey-scroll-track {
  display: none;
}

.journey-scene::before {
  position: absolute;
  inset: 26px;
  content: "";
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(47, 105, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 105, 216, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 76%, transparent);
  pointer-events: none;
}

.journey-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 56px);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.journey-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.journey-panel[hidden] {
  display: grid;
  opacity: 0;
  pointer-events: none;
}

.journey-guest-context {
  position: absolute;
  left: clamp(24px, 3.6vw, 44px);
  top: clamp(22px, 3vw, 36px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 999px;
  color: rgba(95, 98, 109, 0.76);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 26px rgba(25, 37, 74, 0.055);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.journey-guest-context strong {
  color: rgba(22, 23, 26, 0.74);
  font-size: 13px;
  font-weight: 520;
}

.journey-guest-context span {
  position: relative;
  color: rgba(95, 98, 109, 0.72);
  font-size: 12px;
  font-weight: 520;
}

.journey-guest-context span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  background: rgba(95, 98, 109, 0.2);
  vertical-align: -2px;
}

.journey-guest-context-subtle {
  opacity: 0.68;
}

.scene-note {
  position: absolute;
  left: clamp(26px, 4vw, 56px);
  right: clamp(26px, 4vw, 56px);
  bottom: clamp(24px, 3vw, 38px);
  max-width: 560px;
  margin: 0;
  color: rgba(95, 98, 109, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.data-constellation {
  position: relative;
  width: min(100%, 620px);
  min-height: 360px;
}

.data-constellation::before,
.data-constellation::after {
  position: absolute;
  inset: 92px 116px;
  content: "";
  border: 1px solid rgba(47, 105, 216, 0.13);
  border-radius: 50%;
}

.data-constellation::after {
  inset: 54px 74px;
  border-style: dashed;
  opacity: 0.7;
}

.source-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 999px;
  color: rgba(22, 23, 26, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(25, 37, 74, 0.08);
  font-size: 15px;
  font-weight: 520;
  line-height: 1;
}

.source-pill::after {
  position: absolute;
  top: 50%;
  width: clamp(48px, 8vw, 92px);
  content: "";
  border-top: 1px solid rgba(47, 105, 216, 0.18);
}

.source-booking {
  left: 7%;
  top: 16%;
}

.source-booking::after,
.source-whatsapp::after,
.source-link::after {
  left: 100%;
}

.source-menu {
  right: 8%;
  top: 10%;
}

.source-menu::after,
.source-loyalty::after {
  right: 100%;
}

.source-whatsapp {
  left: 0;
  bottom: 26%;
}

.source-link {
  left: 26%;
  bottom: 8%;
}

.source-loyalty {
  right: 2%;
  bottom: 24%;
}

.constellation-core {
  position: absolute;
  left: 50%;
  top: 47%;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(47, 105, 216, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 54px rgba(47, 105, 216, 0.13);
  transform: translate(-50%, -50%);
}

.constellation-core span {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(47, 105, 216, 0.18), rgba(47, 105, 216, 0.04));
}

.constellation-core strong {
  position: relative;
  color: var(--blue-deep);
  max-width: 118px;
  font-size: 17px;
  font-weight: var(--font-price-weight);
  line-height: 1.12;
  text-align: center;
}

.constellation-core em {
  position: relative;
  margin-top: 48px;
  color: rgba(95, 98, 109, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 520;
  line-height: 1;
}

.profile-card,
.loss-card,
.message-card,
.result-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  border: 1px solid rgba(26, 28, 34, 0.075);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 56px rgba(25, 37, 74, 0.1);
}

.profile-card {
  padding: 28px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.profile-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 22px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.1);
  font-size: 20px;
  font-weight: var(--font-price-weight);
}

.profile-top h3 {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: var(--font-card-title-weight);
  line-height: 1.1;
}

.profile-top p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.profile-metrics span {
  min-width: 0;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(47, 105, 216, 0.055);
}

.profile-metrics strong,
.profile-metrics em {
  display: block;
}

.profile-metrics strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: var(--font-price-weight);
  line-height: 1.1;
}

.profile-metrics em {
  margin-top: 5px;
  color: rgba(95, 98, 109, 0.8);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

.profile-detail {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.profile-detail span,
.last-visit span {
  color: rgba(95, 98, 109, 0.82);
  font-size: 13px;
  font-weight: 520;
}

.profile-detail div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-detail b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(22, 23, 26, 0.82);
  background: #f4f6fb;
  font-size: 14px;
  font-weight: 520;
}

.last-visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 28, 34, 0.08);
}

.last-visit strong {
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: var(--font-price-weight);
}

.loss-card {
  width: min(100%, 540px);
  padding: 28px;
}

.loss-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.1);
  font-size: 14px;
  font-weight: 520;
}

.loss-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.loss-metrics div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(47, 105, 216, 0.055);
}

.loss-metrics span,
.loss-metrics strong {
  display: block;
}

.loss-metrics span {
  margin-bottom: 10px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.loss-metrics strong {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: var(--font-price-weight);
  line-height: 0.96;
}

.loss-metrics div:last-child strong {
  color: var(--blue-deep);
}

.visit-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: end;
  min-height: 128px;
  padding: 0 12px 20px;
}

.visit-timeline::before {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 38px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 105, 216, 0.52), rgba(47, 105, 216, 0.14));
}

.visit-timeline span {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  margin-inline: auto;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(47, 105, 216, 0.22);
  z-index: 1;
}

.visit-timeline span:nth-child(1) {
  transform: translateY(-54px);
}

.visit-timeline span:nth-child(2) {
  transform: translateY(-48px);
}

.visit-timeline span:nth-child(3) {
  transform: translateY(-50px);
}

.visit-timeline span:nth-child(4) {
  transform: translateY(-30px);
}

.visit-timeline span:nth-child(5) {
  transform: translateY(-12px);
}

.visit-timeline span:nth-child(6) {
  width: 18px;
  height: 18px;
  transform: translateY(0);
}

.message-card {
  width: min(100%, 430px);
  padding: 28px;
}

.message-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-weight: 520;
}

.message-channel span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3fbd75;
  box-shadow: 0 0 0 5px rgba(63, 189, 117, 0.1);
}

.message-copy {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6f9ff, #ffffff);
}

.message-copy h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: var(--font-card-title-weight);
  line-height: 1.12;
}

.message-copy p {
  margin: 0;
  color: rgba(95, 98, 109, 0.9);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;
}

.message-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.09);
}

.message-offer strong {
  font-size: 18px;
  font-weight: var(--font-final-weight);
}

.message-offer span {
  color: rgba(95, 98, 109, 0.86);
  font-size: 14px;
  font-weight: 520;
}

.result-card {
  display: grid;
  width: min(100%, 470px);
  min-height: 350px;
  align-content: center;
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.result-card::before,
.result-card::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: rgba(47, 105, 216, 0.12);
  box-shadow: 58px -28px 0 rgba(47, 105, 216, 0.07), -48px 42px 0 rgba(47, 105, 216, 0.06);
}

.result-card::before {
  left: 22%;
  top: 24%;
}

.result-card::after {
  right: 24%;
  bottom: 28%;
}

.result-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 105, 216, 0.075);
}

.result-mark::before {
  width: 23px;
  height: 12px;
  content: "";
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg) translate(2px, -2px);
}

.result-card p {
  margin: 20px 0 8px;
  color: rgba(95, 98, 109, 0.86);
  font-size: 17px;
  font-weight: 520;
}

.result-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: clamp(58px, 6.8vw, 88px);
  font-weight: var(--font-price-weight);
  line-height: 0.95;
  white-space: nowrap;
}

.result-card em {
  display: block;
  margin-top: 12px;
  color: rgba(22, 23, 26, 0.66);
  font-size: 17px;
  font-style: normal;
  font-weight: var(--font-final-weight);
  line-height: 1.2;
}

.result-card span {
  margin-top: 8px;
  color: rgba(95, 98, 109, 0.86);
  font-size: 16px;
  font-weight: 400;
}

.role-dashboard {
  scroll-margin-top: 112px;
  margin: -14px auto 72px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 16px 42px rgba(25, 37, 74, 0.07);
}

.role-dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  margin-bottom: 10px;
}

.role-dashboard h2 {
  max-width: 780px;
  margin: 0 0 6px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.role-dashboard h2 span {
  color: var(--blue);
}

.role-dashboard-head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.36;
}

.role-dashboard-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 170px;
  padding-top: 6px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
  text-align: right;
}

.role-dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.role-tabs {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 8px;
  padding: 0;
}

.role-indicator {
  grid-column: 2;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 999px;
  color: rgba(95, 98, 109, 0.76);
  background: rgba(247, 248, 251, 0.78);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.role-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 112px;
  width: auto;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 999px;
  color: rgba(95, 98, 109, 0.88);
  background: rgba(247, 248, 251, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-align: left;
  transition: color 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.role-tab-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.role-tab:hover,
.role-tab:focus-visible {
  color: var(--ink);
  border-color: rgba(47, 105, 216, 0.2);
}

.role-tab:focus-visible {
  outline: 2px solid rgba(47, 105, 216, 0.32);
  outline-offset: 3px;
}

.role-tab.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(47, 105, 216, 0.18);
}

.role-stage {
  grid-column: 1 / -1;
  position: relative;
  height: var(--role-stage-height, 260px);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 37, 74, 0.065);
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.role-stage::before {
  display: none;
}

.role-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: clamp(18px, 2.8vw, 30px);
  align-items: center;
  padding: clamp(16px, 2vw, 22px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.role-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.role-panel[hidden] {
  display: grid;
  opacity: 0;
  pointer-events: none;
}

.role-scenario-copy {
  position: relative;
  z-index: 1;
}

.role-context {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 11px;
  padding: 0 10px;
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 999px;
  color: rgba(95, 98, 109, 0.82);
  background: rgba(47, 105, 216, 0.055);
  font-size: 12px;
  font-weight: 520;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.role-scenario-copy h3 {
  max-width: 680px;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.role-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.role-metrics div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(47, 105, 216, 0.08);
  border-radius: 15px;
  background: rgba(247, 249, 253, 0.85);
  box-shadow: none;
}

.role-metrics .is-primary {
  border-color: rgba(47, 105, 216, 0.14);
  background: linear-gradient(180deg, rgba(47, 105, 216, 0.08), rgba(255, 255, 255, 0.9));
}

.role-metrics div:not(.is-primary) {
  background: rgba(247, 248, 251, 0.5);
  border-color: rgba(26, 28, 34, 0.065);
}

.role-metrics strong,
.role-metrics span {
  display: block;
}

.role-metrics strong {
  color: var(--ink);
  font-size: clamp(22px, 2.25vw, 31px);
  font-weight: var(--font-price-weight);
  line-height: 1;
  white-space: nowrap;
}

.role-metrics div:not(.is-primary) strong {
  color: rgba(22, 23, 26, 0.68);
  font-size: clamp(19px, 1.75vw, 25px);
  font-weight: 560;
}

.role-metrics span {
  margin-top: 6px;
  color: rgba(95, 98, 109, 0.86);
  font-size: 12px;
  font-weight: 460;
  line-height: 1.28;
}

.role-insight {
  max-width: 620px;
  margin: 0 0 10px;
  color: rgba(95, 98, 109, 0.92);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.role-action-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(47, 105, 216, 0.12);
  border-radius: 999px;
  background: rgba(47, 105, 216, 0.055);
}

.role-action-group > span {
  padding-left: 10px;
  color: rgba(95, 98, 109, 0.88);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.role-action {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 13px;
  box-shadow: none;
}

.role-mini-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.9), rgba(255, 255, 255, 0.92));
  box-shadow: 0 14px 30px rgba(25, 37, 74, 0.065);
}

.mini-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mini-visual-head span {
  color: rgba(95, 98, 109, 0.82);
  font-size: 12px;
  font-weight: 560;
}

.mini-visual-head strong {
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 600;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 68px;
}

.mini-bars span {
  display: block;
  min-height: 30px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(47, 105, 216, 0.6), rgba(47, 105, 216, 0.12));
  transform: scaleY(0.72);
  transform-origin: bottom;
}

.role-panel.is-active .mini-bars span {
  animation: mini-bar-fill 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.role-panel.is-active .mini-bars span:nth-child(2) {
  animation-delay: 0.04s;
}

.role-panel.is-active .mini-bars span:nth-child(3) {
  animation-delay: 0.08s;
}

.role-panel.is-active .mini-bars span:nth-child(4) {
  animation-delay: 0.12s;
}

.role-panel.is-active .mini-bars span:nth-child(5) {
  animation-delay: 0.16s;
}

.mini-bars span:nth-child(1) {
  height: 34px;
}

.mini-bars span:nth-child(2) {
  height: 52px;
}

.mini-bars span:nth-child(3) {
  height: 42px;
}

.mini-bars span:nth-child(4) {
  height: 66px;
}

.mini-bars span:nth-child(5) {
  height: 56px;
}

.mini-floor {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-floor span {
  min-height: 34px;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.mini-floor .is-open {
  background: rgba(47, 105, 216, 0.055);
}

.mini-floor .is-booked {
  background: #f1f3f7;
}

.mini-floor .is-soon {
  border-color: rgba(47, 105, 216, 0.18);
  background: rgba(47, 105, 216, 0.1);
}

.role-panel.is-active .mini-floor span:nth-child(3) {
  animation: mini-seat-pulse 1.8s ease-in-out infinite;
}

.mini-floor .is-busy {
  background: #e9edf3;
}

.marketer-mini {
  gap: 8px;
}

.marketer-mini span,
.marketer-mini strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 105, 216, 0.075);
  color: rgba(22, 23, 26, 0.78);
  font-size: 13px;
  font-weight: 560;
}

.role-panel.is-active .marketer-mini span,
.role-panel.is-active .marketer-mini strong {
  animation: mini-flow-in 0.44s ease-out both;
}

.role-panel.is-active .marketer-mini span:nth-of-type(2) {
  animation-delay: 0.08s;
}

.role-panel.is-active .marketer-mini strong {
  animation-delay: 0.16s;
}

.marketer-mini strong {
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.12);
}

.marketer-mini i {
  color: rgba(47, 105, 216, 0.64);
  font-style: normal;
  text-align: center;
}

.hostess-mini {
  gap: 8px;
}

.hostess-mini span,
.hostess-mini strong,
.hostess-mini em {
  display: block;
}

.hostess-mini span {
  color: rgba(95, 98, 109, 0.86);
  font-size: 13px;
  font-weight: 560;
}

.hostess-mini strong {
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.role-panel.is-active .hostess-mini strong {
  animation: mini-seat-highlight 1.7s ease-in-out infinite;
}

.hostess-mini em {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.085);
  font-size: 12px;
  font-style: normal;
  font-weight: 560;
}

.role-visual {
  display: grid;
  align-content: center;
  min-height: 420px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(26, 28, 34, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 56px rgba(25, 37, 74, 0.1);
  backdrop-filter: blur(16px);
}

.owner-card {
  display: grid;
  gap: 22px;
}

.owner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.owner-card-top span,
.owner-card-top strong,
.risk-list p {
  color: rgba(95, 98, 109, 0.82);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
}

.owner-card-top strong {
  color: var(--blue-deep);
}

.owner-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 170px;
  padding: 24px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

.owner-chart span {
  display: block;
  min-height: 54px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(47, 105, 216, 0.72), rgba(47, 105, 216, 0.16));
}

.owner-chart span:nth-child(1) {
  height: 72px;
}

.owner-chart span:nth-child(2) {
  height: 118px;
}

.owner-chart span:nth-child(3) {
  height: 94px;
}

.owner-chart span:nth-child(4) {
  height: 142px;
}

.owner-chart span:nth-child(5) {
  height: 126px;
}

.risk-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(47, 105, 216, 0.055);
}

.risk-list p {
  margin: 0 0 2px;
}

.risk-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(22, 23, 26, 0.76);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.3;
}

.risk-list span::before {
  width: 7px;
  height: 7px;
  content: "";
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(47, 105, 216, 0.54);
}

.floor-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  gap: 14px;
}

.table {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 22px;
  color: rgba(22, 23, 26, 0.72);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(25, 37, 74, 0.06);
  font-size: 15px;
  font-weight: 560;
}

.table-free {
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.055);
}

.table-booked {
  background: #f4f6fb;
}

.table-soon {
  border-color: rgba(47, 105, 216, 0.18);
  background: rgba(47, 105, 216, 0.1);
}

.table-busy {
  color: rgba(95, 98, 109, 0.86);
  background: #eef1f6;
}

.table-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.table-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(95, 98, 109, 0.86);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 520;
}

.table-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-free {
  background: rgba(47, 105, 216, 0.46);
}

.status-booked {
  background: rgba(95, 98, 109, 0.36);
}

.status-soon {
  background: var(--blue);
}

.segment-builder {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

.segment-builder span {
  display: block;
  margin-bottom: 10px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 13px;
  font-weight: 560;
}

.segment-builder strong {
  display: block;
  max-width: 330px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: var(--font-h2-weight);
  line-height: 1.12;
}

.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.segment-tags b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(22, 23, 26, 0.78);
  background: rgba(47, 105, 216, 0.075);
  font-size: 13px;
  font-weight: 520;
}

.campaign-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.campaign-flow span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(22, 23, 26, 0.78);
  background: rgba(47, 105, 216, 0.065);
  box-shadow: none;
  font-size: 12px;
  font-weight: 520;
  line-height: 1;
  text-align: center;
}

.campaign-flow i {
  color: rgba(47, 105, 216, 0.72);
  font-style: normal;
  font-weight: 560;
}

.hostess-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.floor-map-compact {
  grid-template-columns: repeat(2, minmax(74px, 1fr));
}

.floor-map-compact .table {
  min-height: 74px;
}

.booking-list {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f9ff, #ffffff);
}

.booking-list p {
  margin: 0 0 4px;
  color: rgba(95, 98, 109, 0.82);
  font-size: 13px;
  font-weight: 560;
}

.booking-list span {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(22, 23, 26, 0.76);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.25;
}

.seat-suggestion {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 105, 216, 0.16);
  border-radius: 20px;
  color: var(--blue-deep);
  background: rgba(47, 105, 216, 0.085);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.3;
}

.product-demo {
  padding: 0 0 104px;
  text-align: center;
}

.product-demo-copy {
  max-width: 790px;
  margin: 0 auto 30px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: var(--font-label-weight);
  letter-spacing: var(--letter-tight);
  text-transform: uppercase;
}

.product-demo h2 {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: var(--font-h2-weight);
  line-height: 1.04;
  letter-spacing: var(--letter-tight);
}

.product-demo p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  font-weight: var(--font-body-weight);
  line-height: 1.45;
}

.hero-demo {
  width: min(100%, 1080px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: #060913;
  box-shadow: 0 24px 58px rgba(18, 28, 56, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-demo video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  background: #060913;
}

.trusted {
  overflow: hidden;
  padding: 58px 0 116px;
  text-align: center;
}

.trusted p {
  margin-bottom: 66px;
  color: var(--blue);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 380;
  line-height: 1.1;
}

.brand-marquee {
  --brand-gap: clamp(20px, 3vw, 42px);
  --brand-slot-width: clamp(136px, 13vw, 172px);
  --brand-slot-height: clamp(62px, 5vw, 76px);

  display: grid;
  gap: clamp(88px, 8vw, 144px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-row {
  overflow: visible;
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--brand-gap);
  animation: trusted-logo-scroll 24s linear infinite;
  will-change: transform;
}

.brand-track-reverse {
  animation-name: trusted-logo-scroll-reverse;
}

.brand-logo {
  display: grid;
  flex: 0 0 auto;
  width: var(--brand-slot-width);
  height: var(--brand-slot-height);
  overflow: visible;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.brand-logo img {
  width: auto;
  height: auto;
  max-width: var(--brand-slot-width);
  max-height: var(--brand-slot-height);
  object-fit: contain;
  opacity: 0.66;
  filter: grayscale(1) contrast(1.08);
  transform: scale(var(--brand-logo-scale, 1));
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

.brand-logo img[src$="sandyqastana.png"],
.brand-logo img[src$="koke-lounge.png"] {
  --brand-logo-scale: 1.28;
}

.brand-logo img[src$="buddha-bar.png"],
.brand-logo img[src$="baccara.png"],
.brand-logo img[src$="future.png"],
.brand-logo img[src$="yourta-coffee.png"] {
  --brand-logo-scale: 1.1;
}

.brand-logo img[src$="negroni.png"],
.brand-logo img[src$="moderna.png"],
.brand-logo img[src$="pnt-pantheon.png"],
.brand-logo img[src$="embers.png"] {
  --brand-logo-scale: 1.08;
}

.brand-logo[href]:hover img {
  opacity: 0.88;
}

.brand-logo[href]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 10px;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

@keyframes trusted-logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes trusted-logo-scroll-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mini-bar-fill {
  from {
    opacity: 0.74;
    transform: scaleY(0.72);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes mini-seat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 105, 216, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(47, 105, 216, 0.11);
    transform: translateY(-1px);
  }
}

@keyframes mini-flow-in {
  from {
    opacity: 0.78;
    transform: translateY(4px);
  }

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

@keyframes mini-seat-highlight {
  0%,
  100% {
    color: var(--ink);
  }

  50% {
    color: var(--blue-deep);
  }
}

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

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

  .brand-track,
  .hero h1,
  .hero-actions,
  .hero-proof,
  .hero-type.is-typing .hero-type-text,
  .hero-type.is-typing::after,
  .hero-visual img,
  .role-panel.is-active .mini-bars span,
  .role-panel.is-active .mini-floor span:nth-child(3),
  .role-panel.is-active .marketer-mini span,
  .role-panel.is-active .marketer-mini strong,
  .role-panel.is-active .hostess-mini strong {
    animation: none;
  }

  .journey-panel,
  .journey-step,
  .journey-step span,
  .journey-step em,
  .role-panel,
  .role-tab {
    transition: none;
  }

  .role-stage {
    transition: none;
  }

  .journey-panel,
  .journey-panel.is-active,
  .role-panel,
  .role-panel.is-active,
  .motion-ready .motion-reveal,
  .motion-ready .motion-reveal.is-visible,
  .motion-ready .motion-stagger > *,
  .motion-ready .motion-stagger.is-visible > * {
    opacity: 1;
    transform: none;
  }

  .mini-bars span {
    transform: scaleY(1);
  }
}

.intro {
  scroll-margin-top: 112px;
  padding: 12px 0 36px;
}

.intro-copy {
  max-width: 980px;
}

.intro h2,
.section-heading h2,
.faq h2,
.demo-request h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: var(--font-section-title-size);
  font-weight: var(--font-h2-weight);
  line-height: 1.05;
  letter-spacing: var(--letter-tight);
}

.intro h2 {
  max-width: 960px;
  font-size: clamp(32px, 4.15vw, 56px);
  font-weight: 640;
  line-height: 1.04;
}

.intro h2 span {
  color: var(--blue-deep);
  background: linear-gradient(96deg, var(--blue-deep) 0%, var(--blue) 58%, #5d8df0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-subtitle {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.6;
}

.intro-subtitle span {
  display: block;
}

.intro > p,
.faq-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: var(--font-body-weight);
}

.features {
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding: 18px 0 112px;
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
  padding: 44px;
  border-radius: 34px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(12, 24, 48, 0.035);
  transition:
    transform var(--motion-base) var(--ease-premium),
    box-shadow var(--motion-base) ease,
    background var(--motion-base) ease;
}

.feature-card:nth-child(3n) {
  background: var(--panel-warm);
}

.feature-wide {
  min-height: 520px;
}

.feature-new {
  background: #f8f9ff;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: var(--font-card-title-weight);
  line-height: 1.06;
  letter-spacing: var(--letter-tight);
}

.feature-card ul,
.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.feature-card li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: #2d3038;
  font-size: 17px;
  font-weight: var(--font-body-weight);
}

.feature-card li::before,
.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: var(--font-label-weight);
}

.feature-card p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: var(--font-final-weight);
}

.feature-media {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 240px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(18, 28, 56, 0.14));
  transition: opacity var(--motion-base) ease, transform var(--motion-base) var(--ease-premium);
}

.feature-wide .feature-media img {
  max-height: 390px;
}

.phone-media {
  display: grid;
  place-items: center;
}

.phone-media img {
  max-height: 380px;
}

.compact-media img {
  max-height: 390px;
}

.generated-feature-media {
  display: grid;
  min-height: 300px;
  place-items: center;
}

.generated-feature-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.pricing {
  scroll-margin-top: 112px;
  padding: 10px 0 112px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.price-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 37, 74, 0.06);
  transition:
    transform var(--motion-base) var(--ease-premium),
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.price-card-blue {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(160deg, #387ce8 0%, #255ec9 100%);
  box-shadow: 0 26px 70px rgba(47, 105, 216, 0.24);
}

.premium {
  background:
    radial-gradient(circle at 70% 0%, rgba(129, 140, 248, 0.22), transparent 38%),
    linear-gradient(145deg, #172554 0%, #1e3a8a 48%, #312e81 100%);
  box-shadow: 0 26px 70px rgba(23, 37, 84, 0.24);
}

.premium-bonus {
  margin: 8px 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(8, 18, 52, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.premium-bonus__label,
.premium-bonus__title,
.premium-bonus__text {
  margin: 0;
}

.premium-bonus__label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-bonus__title {
  color: var(--white);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.22;
  text-wrap: balance;
}

.premium-bonus__text {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.price-card h3 {
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: var(--font-card-title-weight);
}

.price {
  margin-bottom: 32px;
  font-size: clamp(42px, 4.2vw, 54px);
  font-weight: var(--font-price-weight);
  line-height: 1;
}

.price span {
  font-size: 16px;
  font-weight: var(--font-price-period-weight);
}

.included {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: var(--font-label-weight);
}

.price-card-blue li,
.price-card-blue small,
.price-card-blue .included {
  color: rgba(255, 255, 255, 0.92);
}

.price-card-blue li::before {
  color: var(--white);
}

.price-card .button {
  margin-top: auto;
}

.price-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.price-card-blue small {
  color: var(--white);
}

.custom-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 30px 34px;
  border-radius: 24px;
  background: #f7f8fb;
  transition:
    transform var(--motion-base) var(--ease-premium),
    box-shadow var(--motion-base) ease,
    background var(--motion-base) ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .price-card:hover,
  .custom-plan:hover {
    transform: translateY(-2px);
  }

  .feature-card:hover {
    box-shadow: inset 0 0 0 1px rgba(12, 24, 48, 0.05), 0 18px 42px rgba(25, 37, 74, 0.06);
  }

  .price-card:hover {
    box-shadow: 0 22px 58px rgba(25, 37, 74, 0.09);
  }

  .price-card-blue:hover {
    box-shadow: 0 28px 74px rgba(47, 105, 216, 0.27);
  }

  .premium:hover {
    box-shadow: 0 28px 74px rgba(23, 37, 84, 0.27);
  }

  .custom-plan:hover {
    background: #f5f7fb;
    box-shadow: 0 16px 38px rgba(25, 37, 74, 0.06);
  }
}

.custom-plan h3 {
  margin-bottom: 6px;
  font-size: 28px;
  font-weight: var(--font-card-title-weight);
}

.custom-plan p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: var(--font-body-weight);
}

.faq {
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(420px, 1fr);
  gap: 72px;
  padding: 90px 0;
  border-radius: 34px;
  background: #f7f7f8;
}

.faq-copy,
.faq-list {
  min-width: 0;
}

.faq-copy {
  padding-left: 34px;
}

.faq-copy h2 {
  margin-bottom: 24px;
  color: var(--blue);
}

.faq-copy p {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
  padding-right: 34px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(47, 105, 216, 0.16);
  transition:
    height var(--motion-base) var(--ease-premium),
    box-shadow var(--motion-base) ease,
    transform var(--motion-base) var(--ease-premium),
    background var(--motion-base) ease;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 58px 22px 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: var(--font-card-title-weight);
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  content: "+";
  color: var(--white);
  font-size: 26px;
  line-height: 20px;
  transform: translateY(-50%);
  transition: transform var(--motion-base) var(--ease-premium), opacity var(--motion-base) ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  margin: -6px 24px 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: var(--font-body-weight);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--motion-base) ease, transform var(--motion-base) var(--ease-premium);
}

.faq-list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.demo-request {
  scroll-margin-top: 112px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 8%, rgba(82, 134, 255, 0.24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(118, 91, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #08142d 0%, #10265f 52%, #111827 100%);
  box-shadow: 0 24px 68px rgba(8, 20, 45, 0.22);
}

.demo-request::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(300deg, rgba(47, 105, 216, 0.16), transparent 46%);
  pointer-events: none;
}

.demo-request-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.demo-request-copy {
  min-width: 0;
  padding: 10px 0 0 4px;
}

.demo-request .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.demo-request h2 {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(28px, 2.65vw, 36px);
  line-height: 1.06;
}

.demo-request-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: var(--font-body-weight);
  line-height: 1.5;
}

.demo-request-trust {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: var(--font-body-weight);
  line-height: 1.35;
  list-style: none;
}

.demo-request-trust li {
  position: relative;
  padding-left: 22px;
}

.demo-request-trust li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--font-label-weight);
}

.demo-request-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(3, 10, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.lead-field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.lead-field-wide {
  grid-column: 1 / -1;
}

.lead-field span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: var(--font-label-weight);
}

.lead-field input,
.lead-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition:
    border-color var(--motion-base) ease,
    background var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}

.lead-field span {
  transition: color var(--motion-base) ease;
}

.lead-field:focus-within span {
  color: var(--white);
}

.lead-field input {
  min-height: 40px;
  padding: 0 14px;
}

.lead-field textarea {
  min-height: 88px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.4;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-field input:focus,
.lead-field textarea:focus {
  border-color: rgba(116, 165, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(47, 105, 216, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lead-field.has-error input,
.lead-field.has-error textarea {
  border-color: rgba(255, 145, 145, 0.88);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.lead-field-error {
  color: #fecaca;
  font-size: 11px;
  line-height: 1.35;
}

.lead-field-error:empty,
.lead-form-message:empty {
  display: none;
}

.lead-form-message {
  margin: -3px 0 0;
  color: #fecaca;
  font-size: 13px;
  font-weight: var(--font-body-weight);
}

.lead-form-message a {
  color: var(--white);
  font-weight: var(--font-label-weight);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-submit {
  justify-self: start;
  min-width: 280px;
  min-height: 50px;
  border-color: rgba(255, 255, 255, 0.12);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.lead-submit.is-loading {
  box-shadow: 0 16px 34px rgba(47, 105, 216, 0.18), 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.lead-consent {
  max-width: 560px;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 11, 28, 0.58);
  backdrop-filter: blur(10px);
  animation: lead-modal-overlay-in 0.22s ease both;
}

.lead-modal-overlay.is-closing {
  animation: lead-modal-overlay-out 0.18s ease both;
}

.lead-modal-overlay[hidden] {
  display: none;
}

.lead-modal {
  position: relative;
  width: min(500px, calc(100vw - 48px));
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(82, 134, 255, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(13, 31, 72, 0.94), rgba(12, 22, 46, 0.96));
  box-shadow: 0 28px 78px rgba(0, 8, 28, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
  animation: lead-modal-in 0.24s ease both;
}

.lead-modal-overlay.is-closing .lead-modal {
  animation: lead-modal-out 0.18s ease both;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background var(--motion-base) ease, border-color var(--motion-base) ease;
}

.lead-modal-close::before,
.lead-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.lead-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lead-modal-badge {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: var(--font-label-weight);
  letter-spacing: var(--letter-tight);
  text-transform: uppercase;
}

.lead-modal h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: var(--font-h2-weight);
  line-height: 1.04;
}

.lead-modal p:not(.lead-modal-badge) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.52;
}

.lead-modal-button {
  min-width: 150px;
  margin-top: 24px;
}

@keyframes lead-modal-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lead-modal-overlay-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes lead-modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

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

@keyframes lead-modal-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
  }
}

.final-cta {
  display: grid;
  place-items: center;
  gap: 28px;
  padding: 112px 0 86px;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.site-footer img {
  width: 146px;
}

.site-footer p {
  margin-bottom: 4px;
  text-align: right;
}

@media (min-width: 981px) {
  .guest-journey {
    min-height: 320vh;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .guest-journey-sticky {
    position: sticky;
    top: clamp(82px, 10vh, 112px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100svh - clamp(96px, 12vh, 128px));
    overflow: hidden;
    padding: clamp(28px, 3.4vh, 40px);
    border: 1px solid rgba(26, 28, 34, 0.08);
    border-radius: 42px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 28px 74px rgba(25, 37, 74, 0.1);
  }

  .guest-journey-head {
    margin-bottom: clamp(20px, 2.7vh, 30px);
  }

  .guest-journey h2 {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 50px);
  }

  .guest-journey-head p {
    font-size: clamp(16px, 1.45vw, 18px);
    line-height: 1.4;
  }

  .guest-journey-label {
    padding-top: 9px;
  }

  .guest-journey-body {
    min-height: 0;
    gap: 28px;
  }

  .journey-steps {
    align-content: center;
    gap: 5px;
    min-height: 0;
  }

  .journey-step {
    min-height: 62px;
    padding-block: 10px;
  }

  .journey-step strong {
    font-size: 17px;
  }

  .journey-step em {
    font-size: 13px;
    line-height: 1.3;
  }

  .journey-step.is-active em {
    max-height: 52px;
    margin-top: 4px;
  }

  .journey-scene {
    min-height: 0;
    height: min(520px, max(380px, calc(100svh - 350px)));
  }

  .journey-scroll-track {
    display: grid;
    height: 215vh;
    grid-template-rows: repeat(5, minmax(34vh, 1fr));
    margin-top: -10vh;
    pointer-events: none;
  }

  .journey-scroll-track span {
    display: block;
    min-height: 1px;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .guest-journey-sticky {
    top: 78px;
    max-height: calc(100svh - 86px);
    padding: 24px 30px;
  }

  .guest-journey-head {
    margin-bottom: 16px;
  }

  .guest-journey h2 {
    margin-bottom: 8px;
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1;
  }

  .guest-journey-head p {
    max-width: 660px;
    font-size: 15px;
    line-height: 1.34;
  }

  .guest-journey-label {
    padding-top: 4px;
  }

  .journey-step {
    min-height: 56px;
    padding-block: 8px;
  }

  .journey-step span {
    width: 32px;
    height: 32px;
  }

  .journey-step strong {
    font-size: 16px;
  }

  .journey-step em {
    font-size: 12px;
  }

  .journey-step.is-active em {
    max-height: 44px;
  }

  .journey-scene {
    height: min(440px, max(360px, calc(100svh - 322px)));
  }

  .journey-panel {
    padding: 22px 34px;
  }

  .journey-guest-context {
    top: 18px;
  }

  .data-constellation {
    width: min(100%, 540px);
    min-height: 286px;
  }

  .data-constellation::before {
    inset: 72px 106px;
  }

  .data-constellation::after {
    inset: 40px 68px;
  }

  .source-pill {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .constellation-core {
    width: 148px;
    height: 148px;
  }

  .constellation-core span {
    width: 62px;
    height: 62px;
  }

  .constellation-core strong {
    font-size: 15px;
  }

  .constellation-core em {
    margin-top: 40px;
    font-size: 11px;
  }

  .scene-note {
    bottom: 20px;
    font-size: 13px;
    line-height: 1.34;
  }

  .profile-card {
    width: min(100%, 420px);
    padding: 22px;
  }

  .profile-top {
    gap: 14px;
    margin-bottom: 18px;
  }

  .profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .profile-top h3 {
    font-size: 23px;
  }

  .profile-metrics {
    gap: 8px;
    margin-bottom: 18px;
  }

  .profile-metrics span {
    padding: 11px 10px;
    border-radius: 16px;
  }

  .profile-detail {
    gap: 9px;
    margin-bottom: 14px;
  }

  .profile-detail b {
    min-height: 30px;
    font-size: 12px;
  }

  .last-visit {
    padding-top: 14px;
  }

  .loss-card {
    width: min(100%, 480px);
    padding: 22px;
  }

  .loss-status {
    margin-bottom: 18px;
  }

  .loss-metrics {
    gap: 12px;
    margin-bottom: 22px;
  }

  .loss-metrics div {
    padding: 16px;
  }

  .loss-metrics strong {
    font-size: clamp(27px, 3.2vw, 36px);
  }

  .visit-timeline {
    min-height: 92px;
    padding-bottom: 14px;
  }

  .visit-timeline span:nth-child(1) {
    transform: translateY(-38px);
  }

  .visit-timeline span:nth-child(2) {
    transform: translateY(-34px);
  }

  .visit-timeline span:nth-child(3) {
    transform: translateY(-36px);
  }

  .visit-timeline span:nth-child(4) {
    transform: translateY(-22px);
  }

  .visit-timeline span:nth-child(5) {
    transform: translateY(-9px);
  }

  .message-card {
    padding: 22px;
  }

  .message-channel {
    margin-bottom: 18px;
  }

  .message-copy {
    padding: 20px;
  }

  .message-copy h3 {
    font-size: 22px;
  }

  .message-copy p {
    font-size: 15px;
  }

  .message-offer {
    margin-top: 14px;
    padding: 15px 18px;
  }

  .result-card {
    min-height: 300px;
    padding: 28px;
  }

  .result-mark {
    width: 46px;
    height: 46px;
  }

  .result-card p {
    margin-top: 16px;
  }

  .result-card strong {
    font-size: clamp(48px, 5.5vw, 68px);
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 34px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

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

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .faq,
  .demo-request-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    margin-top: 32px;
  }

  .guest-blindspot {
    margin-bottom: 76px;
    padding: 42px;
    border-radius: 34px;
  }

  .guest-blindspot-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .guest-blindspot-label {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .blindspot-grid,
  .blindspot-card-wide {
    grid-template-columns: 1fr;
  }

  .blindspot-card-large {
    min-height: auto;
  }

  .blindspot-card-wide {
    gap: 28px;
  }

  .guest-journey {
    margin: -24px auto 76px;
    padding: 38px;
    border-radius: 34px;
  }

  .guest-journey-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .guest-journey-label {
    justify-content: flex-start;
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .guest-journey-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journey-steps {
    display: flex;
    align-content: stretch;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scrollbar-width: none;
  }

  .journey-steps::-webkit-scrollbar {
    display: none;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-step {
    flex: 0 0 min(220px, 56vw);
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 84px;
    padding: 14px;
    border: 1px solid rgba(26, 28, 34, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
  }

  .journey-step span {
    width: 32px;
    height: 32px;
  }

  .journey-step em,
  .journey-step.is-active em {
    display: none;
  }

  .journey-step.is-active {
    border-color: rgba(47, 105, 216, 0.24);
    background: rgba(47, 105, 216, 0.055);
  }

  .journey-scene {
    min-height: 520px;
    border-radius: 30px;
  }

  .role-dashboard {
    margin: -18px auto 76px;
    padding: 24px;
    border-radius: 28px;
  }

  .role-dashboard-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .role-dashboard-label {
    justify-content: flex-start;
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .role-dashboard-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .role-indicator {
    grid-column: 1;
    justify-self: start;
  }

  .role-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }

  .role-tabs::-webkit-scrollbar {
    display: none;
  }

  .role-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 136px;
    justify-content: center;
  }

  .role-stage {
    min-height: 0;
    border-radius: 28px;
  }

  .role-panel {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 220px);
    align-content: start;
    gap: 12px;
    padding: 22px;
  }

  .role-scenario-copy h3 {
    max-width: 640px;
  }

  .role-insight {
    max-width: 620px;
  }

  .role-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-mini-visual {
    min-height: 124px;
    padding: 13px;
    border-radius: 20px;
  }

  .mini-floor span {
    min-height: 32px;
  }

  .product-demo {
    padding-bottom: 76px;
  }

  .product-demo-copy {
    margin-bottom: 24px;
  }

  .product-demo h2 {
    font-size: 38px;
  }

  .product-demo p {
    font-size: 17px;
  }

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

  .premium-bonus {
    margin-bottom: 28px;
  }

  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .faq {
    gap: 34px;
  }

  .faq-copy,
  .faq-list {
    padding: 0 24px;
  }

  .demo-request {
    padding: 22px;
  }

  .demo-request-copy {
    padding: 0;
  }

  .demo-request h2,
  .demo-request-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  .custom-plan {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .motion-ready .motion-reveal,
  .motion-ready .motion-reveal.is-visible,
  .motion-ready .motion-stagger > *,
  .motion-ready .motion-stagger.is-visible > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header {
    transition-duration: 0.2s;
  }

  .site-header {
    align-items: center;
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 16px;
    padding: 12px 18px;
  }

  .logo {
    grid-column: 1;
    order: 1;
  }

  .logo img {
    width: clamp(112px, 31vw, 132px);
  }

  .site-footer img {
    width: 132px;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    order: 2;
    gap: 8px;
  }

  .header-cta {
    width: auto;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .language-toggle {
    min-width: 44px;
    height: 44px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .language-options {
    min-width: 80px;
  }

  .main-nav {
    width: 100%;
    gap: 20px;
    grid-column: 1 / -1;
    order: 3;
    font-size: 14px;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(32px, 9vw, 36px);
  }

  .h1-nowrap {
    white-space: normal;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    gap: 8px;
    padding-inline: 14px;
    font-size: 15px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.15;
  }

  .hero-proof {
    margin-top: 10px;
  }

  .hero-proof-main {
    font-size: clamp(36px, 9.4vw, 42px);
  }

  .hero-proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 24px;
  }

  .hero-proof-metric {
    padding-inline: 8px;
  }

  .hero-proof-metric strong {
    font-size: clamp(20px, 5.6vw, 23px);
  }

  .hero-proof-metric span {
    font-size: clamp(10px, 2.7vw, 11.5px);
    line-height: 1.2;
  }

  .hero-visual {
    border-radius: 24px;
  }

  @media (max-width: 360px) {
    .hero-actions .button {
      white-space: normal;
    }

    .hero-proof-metric {
      padding-inline: 5px;
    }

    .hero-proof-metric strong {
      font-size: 18px;
    }
  }

  .guest-blindspot {
    width: min(100% - 24px, 720px);
    margin-top: 2px;
    margin-bottom: 62px;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .guest-blindspot h2 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .guest-blindspot-head p {
    font-size: 16px;
  }

  .guest-blindspot-label {
    font-size: 13px;
  }

  .blindspot-grid,
  .blindspot-side {
    gap: 14px;
  }

  .blindspot-card {
    border-radius: 24px;
  }

  .blindspot-card h3 {
    font-size: 21px;
  }

  .blindspot-card p {
    font-size: 15px;
  }

  .blindspot-card-large,
  .blindspot-card-small,
  .blindspot-card-wide {
    padding: 22px;
  }

  .visit-drop {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .timeline-item {
    min-height: 64px;
  }

  .timeline-value {
    font-size: 23px;
  }

  .timeline-item::after {
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }

  .broadcast-metric {
    font-size: 18px;
  }

  .data-pills span {
    min-height: auto;
    padding-inline: 0;
  }

  .guest-compare {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .guest-compare div {
    padding: 0;
    border-radius: 0;
  }

  .guest-compare b {
    font-size: 30px;
    line-height: 1;
  }

  .guest-journey {
    width: min(100% - 24px, 720px);
    margin-top: -32px;
    margin-bottom: 62px;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .guest-journey h2 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .guest-journey-head p {
    font-size: 16px;
  }

  .guest-journey-label {
    font-size: 13px;
  }

  .journey-step {
    flex-basis: min(218px, 82vw);
  }

  .journey-step strong {
    font-size: 16px;
  }

  .journey-step em {
    font-size: 13px;
  }

  .journey-scene {
    min-height: 560px;
    border-radius: 24px;
  }

  .journey-scene::before {
    inset: 18px;
    background-size: 34px 34px;
  }

  .journey-panel {
    padding: 22px;
  }

  .journey-guest-context {
    left: 22px;
    top: 18px;
    min-height: 32px;
    padding-inline: 10px;
  }

  .journey-guest-context strong {
    font-size: 12px;
  }

  .journey-guest-context span {
    font-size: 11px;
  }

  .scene-note {
    left: 22px;
    right: 22px;
    bottom: 22px;
    font-size: 14px;
  }

  .data-constellation {
    min-height: 330px;
  }

  .data-constellation::before,
  .data-constellation::after,
  .source-pill::after {
    display: none;
  }

  .source-pill {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .source-booking {
    left: 4%;
    top: 12%;
  }

  .source-menu {
    right: 4%;
    top: 18%;
  }

  .source-whatsapp {
    left: 2%;
    bottom: 34%;
  }

  .source-link {
    left: 14%;
    bottom: 17%;
  }

  .source-loyalty {
    right: 2%;
    bottom: 30%;
  }

  .constellation-core {
    width: 138px;
    height: 138px;
  }

  .constellation-core span {
    width: 58px;
    height: 58px;
  }

  .constellation-core strong {
    font-size: 15px;
  }

  .profile-card,
  .loss-card,
  .message-card,
  .result-card {
    border-radius: 22px;
  }

  .profile-card,
  .loss-card,
  .message-card {
    padding: 20px;
  }

  .profile-top {
    margin-bottom: 18px;
  }

  .profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 18px;
  }

  .profile-top h3 {
    font-size: 23px;
  }

  .profile-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .profile-metrics span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
  }

  .profile-metrics strong {
    font-size: 17px;
  }

  .last-visit {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .loss-status {
    margin-bottom: 18px;
  }

  .loss-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .loss-metrics div {
    padding: 18px;
  }

  .visit-timeline {
    min-height: 90px;
  }

  .message-copy {
    padding: 20px;
    border-radius: 20px;
  }

  .message-copy h3 {
    font-size: 22px;
  }

  .message-copy p {
    font-size: 16px;
  }

  .message-offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }

  .result-card {
    min-height: 320px;
    padding: 28px 18px;
  }

  .result-mark {
    width: 48px;
    height: 48px;
  }

  .result-card strong {
    font-size: clamp(43px, 13vw, 54px);
  }

  .role-dashboard {
    width: min(100% - 24px, 720px);
    margin-top: -14px;
    margin-bottom: 48px;
    padding: 18px 14px;
    border-radius: 24px;
  }

  .role-dashboard h2 {
    margin-bottom: 6px;
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.08;
  }

  .role-dashboard-head p {
    font-size: 14px;
    line-height: 1.36;
  }

  .role-dashboard-label {
    font-size: 13px;
  }

  .role-indicator {
    display: none;
  }

  .role-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0;
  }

  .role-tab {
    min-width: 0;
    min-height: 38px;
    width: 100%;
    gap: 6px;
    padding-inline: 8px;
    font-size: 12px;
  }

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

  .role-stage {
    min-height: 0;
    border-radius: 24px;
  }

  .role-stage::before {
    display: none;
  }

  .role-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .role-context {
    min-height: auto;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 7px 9px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.28;
  }

  .role-scenario-copy h3 {
    margin-bottom: 8px;
    font-size: clamp(18px, 5vw, 20px);
  }

  .role-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
  }

  .role-metrics div {
    padding: 10px 9px;
    border-radius: 14px;
  }

  .role-metrics strong {
    font-size: clamp(20px, 5.8vw, 24px);
    white-space: normal;
  }

  .role-metrics div:not(.is-primary) strong {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  .role-metrics span {
    font-size: 11px;
  }

  .role-insight {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .role-action-group {
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 7px;
    border-radius: 18px;
  }

  .role-action-group > span {
    padding-left: 4px;
    font-size: 11px;
  }

  .role-action {
    width: 100%;
    min-height: 40px;
    padding-inline: 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.16;
  }

  .role-mini-visual {
    display: none;
  }

  .owner-chart {
    min-height: 134px;
    gap: 8px;
    padding: 18px 12px 14px;
  }

  .owner-chart span:nth-child(1) {
    height: 56px;
  }

  .owner-chart span:nth-child(2) {
    height: 94px;
  }

  .owner-chart span:nth-child(3) {
    height: 74px;
  }

  .owner-chart span:nth-child(4) {
    height: 112px;
  }

  .owner-chart span:nth-child(5) {
    height: 100px;
  }

  .risk-list {
    padding: 16px;
    border-radius: 18px;
  }

  .floor-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .table {
    min-height: 68px;
    border-radius: 18px;
  }

  .table-legend {
    gap: 8px;
  }

  .segment-builder {
    padding: 18px;
    border-radius: 20px;
  }

  .segment-builder strong {
    font-size: 23px;
  }

  .campaign-flow {
    display: none;
  }

  .campaign-flow i {
    transform: none;
    text-align: center;
  }

  .campaign-flow span {
    min-height: 30px;
  }

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

  .booking-list {
    padding: 16px;
    border-radius: 18px;
  }

  .seat-suggestion {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 14px;
  }

  .product-demo {
    padding-bottom: 62px;
  }

  .product-demo-copy {
    margin-bottom: 20px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .product-demo h2 {
    font-size: 32px;
  }

  .product-demo p {
    font-size: 16px;
  }

  .hero-demo {
    border-radius: 24px;
  }

  .hero-card {
    display: none;
  }

  .trusted {
    padding-bottom: 56px;
  }

  .trusted p {
    margin-bottom: 42px;
    font-size: 25px;
  }

  .brand-marquee {
    --brand-gap: 24px;
    --brand-slot-width: 128px;
    --brand-slot-height: 56px;

    gap: 80px;
  }

  .brand-track {
    animation-duration: 20s;
  }

  .feature-card {
    padding: 28px;
    border-radius: 24px;
  }

  .feature-card h3 {
    font-size: 29px;
  }

  .feature-card li,
  .feature-card p {
    font-size: 16px;
  }

  .feature-media {
    min-height: 190px;
  }

  .phone-media {
    min-height: 250px;
  }

  .feature-wide .phone-media img,
  .phone-media img,
  .compact-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
  }

  .generated-feature-media {
    min-height: 230px;
  }

  .generated-feature-media img {
    max-height: 320px;
  }

  .price-card {
    min-height: auto;
    padding: 26px;
  }

  .premium-bonus {
    padding: 16px;
  }

  .faq {
    width: 100%;
    border-radius: 0;
  }

  .demo-request {
    width: min(100% - 28px, 720px);
    padding: 16px;
    border-radius: 24px;
  }

  .demo-request-shell {
    gap: 18px;
  }

  .demo-request-card {
    padding: 14px;
    border-radius: 20px;
  }

  .demo-request h2 {
    font-size: clamp(27px, 7.2vw, 31px);
    line-height: 1.06;
  }

  .demo-request-copy p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .demo-request-trust {
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.3;
  }

  .demo-request-trust li {
    padding-left: 18px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-field input {
    min-height: 44px;
  }

  .lead-field textarea {
    min-height: 90px;
    font-size: 14px;
    line-height: 1.35;
  }

  .lead-submit {
    width: 100%;
    min-width: 0;
  }

  .lead-modal-overlay {
    padding: 16px;
  }

  .lead-modal {
    width: calc(100vw - 32px);
    padding: 26px 22px 22px;
    border-radius: 22px;
  }

  .lead-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .lead-modal-badge {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .lead-modal h2 {
    margin-bottom: 12px;
    font-size: 34px;
  }

  .lead-modal p:not(.lead-modal-badge) {
    font-size: 15px;
    line-height: 1.48;
  }

  .lead-modal-button {
    width: 100%;
    margin-top: 20px;
  }

  summary {
    font-size: 17px;
  }

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

  .site-footer p {
    text-align: left;
  }
}


.logo-text {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.site-footer .logo-text {
  font-size: 18px;
}
