/* Bookey marketing — product-led landing page */

/* styles.css sets html/body overflow-x: auto. Hidden on one axis with visible
   on the other computes to auto, so phones still scroll sideways. Clip both. */
html {
  overflow-x: hidden;
  overflow-y: auto;
}

.landing-page {
  --landing-navy: #0d102b;
  --landing-indigo: #6751e8;
  --landing-purple: #8d6cff;
  --landing-ink: #17172b;
  --landing-muted: #6f7388;
  --landing-line: #e9eaf1;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  color: var(--landing-ink);
}

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

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.landing-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--landing-navy);
  color: #fff;
  transform: translateY(-150%);
}

.landing-skip:focus {
  color: #fff;
  transform: translateY(0);
}

.landing-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-header.is-scrolled {
  height: 68px;
  border-color: rgba(233, 234, 241, 0.9);
  box-shadow: 0 12px 30px rgba(31, 25, 77, 0.05);
}

.landing-nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.landing-brand:hover {
  color: var(--landing-ink);
}

.landing-brand img {
  border-radius: 9px;
  object-fit: contain;
}

.landing-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.landing-menu > a,
.landing-sign-in {
  position: relative;
  color: #45485c;
  font-size: 14px;
  font-weight: 600;
}

.landing-menu > a::after,
.landing-sign-in::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--landing-indigo);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.landing-menu > a:hover::after,
.landing-sign-in:hover::after {
  transform: scaleX(1);
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
}

.landing-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--landing-purple), var(--landing-indigo));
  box-shadow: 0 12px 28px rgba(103, 81, 232, 0.24);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-button:hover {
  box-shadow: 0 16px 32px rgba(103, 81, 232, 0.32);
  color: #fff;
  transform: translateY(-2px);
}

.landing-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.landing-button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.landing-menu-button {
  display: none;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 94px;
  background:
    radial-gradient(circle at 84% 22%, rgba(141, 108, 255, 0.11), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
}

.landing-hero::after {
  position: absolute;
  right: -12%;
  bottom: 9%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 81, 232, 0.25), transparent);
  content: "";
  transform: rotate(-8deg);
}

.landing-orb {
  position: absolute;
  border: 1px solid rgba(103, 81, 232, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.landing-orb-one {
  top: 90px;
  right: -190px;
  width: 560px;
  height: 560px;
  animation: landing-drift 12s ease-in-out infinite;
}

.landing-orb-two {
  right: 80px;
  bottom: -330px;
  width: 500px;
  height: 500px;
  animation: landing-drift 15s ease-in-out -4s infinite reverse;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 50px;
}

.landing-eyebrow,
.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--landing-indigo);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-eyebrow svg {
  width: 18px;
  fill: rgba(103, 81, 232, 0.15);
  stroke: var(--landing-indigo);
  stroke-width: 1.1;
}

.landing-hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--landing-navy);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
}

.landing-hero h1 span {
  background: linear-gradient(110deg, var(--landing-indigo), #9f68fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.7;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--landing-ink);
  font-weight: 700;
}

.landing-text-button:hover {
  color: var(--landing-indigo);
}

.landing-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: #65697f;
  font-size: 12px;
  list-style: none;
}

.landing-check-list li::before {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(21, 150, 108, 0.1);
  color: var(--success);
  content: "✓";
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.platform-stage {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.platform-glow {
  position: absolute;
  inset: 6% 3% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 81, 232, 0.18), transparent 66%);
  filter: blur(12px);
}

.platform-window {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: 4px;
  left: 22px;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(103, 81, 232, 0.13);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 75px rgba(31, 25, 77, 0.16);
  transform: rotateY(-3deg) rotateX(1deg);
}

.platform-window > header {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid var(--landing-line);
  background: #fbfbfe;
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.platform-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.platform-context {
  color: #8c8fa1;
  font-size: 8px;
}

.platform-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  justify-self: end;
  border-radius: 50%;
  background: var(--landing-indigo);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.platform-window-body {
  display: grid;
  min-height: 302px;
  grid-template-columns: 112px 1fr;
}

.platform-window-body > aside {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 11px;
  background: var(--landing-navy);
  color: #999eb9;
  font-size: 8px;
}

.platform-window-body > aside span {
  padding: 8px;
  border-radius: 6px;
}

.platform-window-body > aside .active {
  background: rgba(141, 108, 255, 0.18);
  color: #fff;
}

.platform-content {
  padding: 24px;
  background: #fafafd;
}

.platform-content > small {
  color: var(--landing-indigo);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-content > h3 {
  margin: 4px 0 17px;
  font-size: 18px;
}

.platform-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.platform-signals > div {
  position: relative;
  min-width: 0;
  padding: 11px;
  border: 1px solid var(--landing-line);
  border-radius: 10px;
  background: #fff;
}

.platform-signals span,
.platform-signals strong {
  display: block;
}

.platform-signals span {
  color: #9699a9;
  font-size: 7px;
}

.platform-signals strong {
  overflow: hidden;
  margin-top: 4px;
  padding-right: 10px;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-signals i {
  position: absolute;
  top: 11px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.signal-good {
  background: var(--success);
}

.signal-ai {
  background: var(--landing-purple);
  box-shadow: 0 0 0 3px rgba(141, 108, 255, 0.12);
}

.platform-activity {
  display: grid;
  gap: 7px;
  margin-top: 11px;
}

.platform-activity > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid var(--landing-line);
  border-radius: 10px;
  background: #fff;
}

.activity-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: rgba(228, 139, 46, 0.12);
  color: #b96b1e;
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.activity-icon-ai {
  background: rgba(103, 81, 232, 0.1);
  color: var(--landing-indigo);
}

.platform-activity p {
  min-width: 0;
  flex: 1;
  margin: 0;
}

.platform-activity strong,
.platform-activity small {
  display: block;
}

.platform-activity strong {
  font-size: 8px;
}

.platform-activity small {
  overflow: hidden;
  margin-top: 2px;
  color: #9699aa;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-activity b {
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(103, 81, 232, 0.09);
  color: var(--landing-indigo);
  font-size: 7px;
}

.platform-agent-card,
.platform-team-card,
.platform-receipt-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(103, 81, 232, 0.13);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(31, 25, 77, 0.15);
  backdrop-filter: blur(14px);
  animation: landing-float 6s ease-in-out infinite;
}

.platform-agent-card {
  right: -8px;
  bottom: 4px;
  display: grid;
  width: 285px;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: 17px;
}

.platform-agent-icon {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: span 2;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--landing-purple), var(--landing-indigo));
  color: #fff;
  place-items: center;
}

.platform-agent-card small,
.platform-agent-card strong {
  display: block;
}

.platform-agent-card small {
  color: #898c9e;
  font-size: 8px;
}

.platform-agent-card strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 10px;
}

.platform-agent-card p {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  padding: 9px;
  border-radius: 8px;
  background: #f6f4ff;
  color: #55586c;
  font-size: 8px;
}

.platform-agent-status {
  grid-column: 1 / -1;
  color: var(--landing-indigo);
  font-size: 8px;
  font-weight: 700;
}

.platform-agent-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--landing-purple);
  box-shadow: 0 0 0 4px rgba(141, 108, 255, 0.12);
  animation: landing-pulse 2s ease-out infinite;
}

.platform-team-card {
  top: 4px;
  right: 22px;
  width: 194px;
  padding: 14px;
  border-radius: 15px;
  animation-delay: -2s;
}

.platform-team-card small,
.platform-team-card > strong {
  display: block;
}

.platform-team-card small {
  color: var(--landing-indigo);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-team-card > strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 10px;
}

.platform-people {
  display: flex;
  margin-top: 10px;
}

.platform-people span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-right: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ece9ff;
  color: var(--landing-indigo);
  font-size: 7px;
  font-weight: 800;
  place-items: center;
}

.platform-team-card p {
  margin: 8px 0 0;
  color: #8e91a2;
  font-size: 7px;
}

.platform-receipt-card {
  bottom: 38px;
  left: -4px;
  width: 158px;
  padding: 13px;
  border-radius: 14px;
  animation-delay: -4s;
}

.platform-receipt-card span,
.platform-receipt-card strong,
.platform-receipt-card i {
  display: block;
}

.platform-receipt-card span {
  color: #8e91a3;
  font-size: 7px;
}

.platform-receipt-card strong {
  margin: 3px 0 8px;
  font-family: var(--font-display);
  font-size: 9px;
}

.platform-receipt-card i {
  padding: 6px;
  border-radius: 6px;
  background: rgba(21, 150, 108, 0.09);
  color: var(--success);
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.landing-journey {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.journey-glow {
  position: absolute;
  top: 5%;
  left: 12%;
  width: 76%;
  height: 86%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 81, 232, 0.13), transparent 68%);
  filter: blur(8px);
}

.journey-phone {
  position: absolute;
  z-index: 4;
  top: 44px;
  left: 14px;
  width: 184px;
  height: 376px;
  padding: 8px;
  border: 3px solid #26283d;
  border-radius: 34px;
  background: #101326;
  box-shadow: 0 30px 65px rgba(13, 16, 43, 0.2);
  transform: rotate(-5deg);
  animation: landing-float 6s ease-in-out infinite;
}

.journey-phone-top {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 54px;
  height: 15px;
  border-radius: 10px;
  background: #0a0b16;
  transform: translateX(-50%);
}

.journey-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: linear-gradient(145deg, #e3ddce, #b7aa95);
}

.journey-camera-label {
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 20px;
  background: rgba(13, 16, 43, 0.8);
  color: #fff;
  font-size: 9px;
  transform: translateX(-50%);
}

.journey-camera-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66ddb5;
  box-shadow: 0 0 0 4px rgba(102, 221, 181, 0.16);
}

.journey-receipt {
  position: absolute;
  top: 88px;
  right: 20px;
  left: 20px;
  min-height: 190px;
  padding: 24px 16px;
  border-radius: 2px;
  background: #fffdf6;
  box-shadow: 0 15px 35px rgba(39, 32, 22, 0.18);
  color: #33313b;
}

.receipt-brand {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.receipt-rule {
  height: 1px;
  margin: 10px 0;
  background: #d9d5c9;
}

.receipt-lines,
.receipt-lines::before,
.receipt-lines::after {
  height: 4px;
  border-radius: 4px;
  background: #d8d6cf;
  content: "";
}

.receipt-lines {
  position: relative;
  width: 86%;
  margin: 24px 0;
}

.receipt-lines::before,
.receipt-lines::after {
  position: absolute;
  left: 0;
}

.receipt-lines::before {
  top: -12px;
  width: 72%;
}

.receipt-lines::after {
  top: 12px;
  width: 92%;
}

.receipt-lines.short {
  width: 58%;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.journey-scan-line {
  position: absolute;
  z-index: 3;
  top: 88px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: #8d6cff;
  box-shadow: 0 0 12px 4px rgba(141, 108, 255, 0.55);
  animation: landing-scan 3.4s ease-in-out infinite;
}

.journey-shutter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(13, 16, 43, 0.42);
  transform: translateX(-50%);
}

.journey-track {
  position: absolute;
  z-index: 1;
  top: 238px;
  right: 66px;
  left: 150px;
  height: 2px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(103, 81, 232, 0), rgba(103, 81, 232, 0.55), rgba(103, 81, 232, 0));
  transform: rotate(-7deg);
}

.journey-track span {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--landing-purple);
  box-shadow: 0 0 0 7px rgba(141, 108, 255, 0.13);
  animation: landing-travel 4s ease-in-out infinite;
}

.journey-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(103, 81, 232, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(31, 25, 77, 0.12);
  backdrop-filter: blur(12px);
}

.journey-extract {
  top: 92px;
  left: 204px;
  width: 230px;
  padding: 18px;
  transform: rotate(2deg);
  animation: landing-float 7s ease-in-out -2s infinite;
}

.journey-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.journey-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  place-items: center;
}

.journey-icon-purple {
  background: rgba(103, 81, 232, 0.1);
  color: var(--landing-indigo);
}

.journey-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

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

.journey-card-head small,
.journey-ready small {
  color: var(--landing-muted);
  font-size: 9px;
}

.journey-card-head strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.journey-fields {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.journey-fields div {
  position: relative;
  padding: 8px 28px 8px 10px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
}

.journey-fields span,
.journey-fields strong {
  display: block;
}

.journey-fields span {
  color: var(--landing-muted);
  font-size: 8px;
}

.journey-fields strong {
  margin-top: 1px;
  font-size: 10px;
}

.journey-fields i {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(21, 150, 108, 0.1);
  transform: translateY(-50%);
}

.journey-ready {
  right: 0;
  bottom: 58px;
  display: flex;
  width: 184px;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  transform: rotate(-2deg);
  animation: landing-float 6.5s ease-in-out -4s infinite;
}

.journey-ready-check {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 13px;
  border-radius: 50%;
  background: linear-gradient(145deg, #36bd8d, var(--success));
  box-shadow: 0 12px 25px rgba(21, 150, 108, 0.2);
  color: #fff;
  place-items: center;
}

.journey-ready-check svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.journey-ready > strong {
  margin: 5px 0 13px;
  font-family: var(--font-display);
  font-size: 15px;
}

.journey-ready-pill {
  padding: 5px 9px;
  border-radius: 20px;
  background: rgba(21, 150, 108, 0.09);
  color: var(--success);
  font-size: 9px;
  font-weight: 700;
}

.journey-float {
  position: absolute;
  z-index: 5;
  padding: 7px 10px;
  border: 1px solid rgba(103, 81, 232, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(31, 25, 77, 0.08);
  color: #666a7d;
  font-size: 9px;
  font-weight: 700;
  animation: landing-float 5s ease-in-out infinite;
}

.journey-float::before {
  color: var(--success);
  content: "✓ ";
}

.journey-float-one {
  top: 38px;
  right: 82px;
}

.journey-float-two {
  bottom: 24px;
  left: 214px;
  animation-delay: -2.5s;
}

.landing-proof {
  background: var(--landing-navy);
  color: #fff;
}

.landing-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.landing-proof-grid > div {
  display: grid;
  min-height: 118px;
  grid-template-columns: 38px 1fr;
  align-content: center;
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-proof-grid > div:last-child {
  border-right: 0;
}

.proof-icon {
  display: grid;
  width: 30px;
  height: 30px;
  grid-row: span 2;
  border: 1px solid rgba(141, 108, 255, 0.5);
  border-radius: 9px;
  background: rgba(141, 108, 255, 0.12);
  color: #bba9ff;
  place-items: center;
}

.landing-proof strong {
  font-family: var(--font-display);
  font-size: 14px;
}

.landing-proof small {
  margin-top: 3px;
  color: #aeb2c8;
  font-size: 11px;
}

.landing-section {
  padding: 118px 0;
}

.landing-section-heading {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.landing-section-heading h2,
.landing-product-intro h2,
.landing-insights h2,
.landing-cta h2 {
  margin-bottom: 20px;
  color: var(--landing-navy);
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 750;
  line-height: 1.08;
}

.landing-section-heading p,
.landing-product-intro p {
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.7;
}

.landing-how {
  overflow: hidden;
  background: #fff;
}

.landing-steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
}

.landing-step {
  position: relative;
  text-align: center;
}

.landing-step-number {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--landing-indigo);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  place-items: center;
  transform: translateX(-50%);
}

.landing-step-visual {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  margin: 0 auto 28px;
  border: 1px solid rgba(103, 81, 232, 0.1);
  border-radius: 32px;
  background: linear-gradient(145deg, #faf9ff, #f2efff);
  box-shadow: 0 22px 45px rgba(31, 25, 77, 0.07);
  place-items: center;
}

.landing-step-visual > svg {
  width: 78px;
  fill: none;
  stroke: var(--landing-indigo);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.step-pulse {
  position: absolute;
  right: 27px;
  bottom: 28px;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--success);
  animation: landing-pulse 2s ease-out infinite;
}

.step-review {
  align-content: center;
  gap: 7px;
  padding: 27px;
}

.mini-field {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(31, 25, 77, 0.05);
  color: #62667b;
  font-size: 9px;
}

.mini-field i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.step-post {
  align-content: center;
  gap: 9px;
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
}

.post-ring {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #35bd8d, var(--success));
  box-shadow: 0 15px 30px rgba(21, 150, 108, 0.2);
  color: #fff;
  place-items: center;
}

.post-ring svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.landing-step h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.landing-step p {
  margin: 0 auto;
  color: var(--landing-muted);
  font-size: 13px;
  line-height: 1.65;
}

.landing-step-connector {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(103, 81, 232, 0.18);
}

.landing-step-connector span {
  position: absolute;
  top: -2px;
  width: 34px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, transparent, var(--landing-purple), transparent);
  animation: landing-travel 2.4s linear infinite;
}

.landing-product {
  background: #f6f7fb;
}

.landing-product-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.landing-product-intro h2 {
  max-width: 710px;
  margin-bottom: 0;
}

.landing-product-intro p {
  margin-bottom: 4px;
}

.product-stage {
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(31, 25, 77, 0.1);
}

.product-browser-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 6px;
  padding: 0 15px;
  border-bottom: 1px solid var(--landing-line);
  background: #fafafd;
}

.product-browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dae3;
}

.product-browser-bar > div {
  width: 210px;
  margin: auto;
  padding: 5px 16px;
  border-radius: 8px;
  background: #f0f1f5;
  color: #8a8da0;
  font-size: 9px;
  text-align: center;
  transform: translateX(-25px);
}

.product-shell {
  display: grid;
  min-height: 470px;
  grid-template-columns: 155px 1fr 225px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 15px;
  background: var(--landing-navy);
  color: #9fa3bd;
  font-size: 10px;
}

.product-mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.product-mini-brand img {
  width: 23px;
  height: 23px;
  border-radius: 6px;
}

.product-sidebar > span {
  padding: 9px 11px;
  border-radius: 7px;
}

.product-sidebar > span.active {
  background: rgba(141, 108, 255, 0.18);
  color: #fff;
}

.product-main {
  min-width: 0;
  padding: 30px 26px;
  background: #fbfbfe;
}

.product-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.product-title-row small,
.product-title-row h3 {
  display: block;
  margin: 0;
}

.product-title-row small {
  color: var(--landing-indigo);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-title-row h3 {
  margin-top: 4px;
  font-size: 21px;
}

.product-title-row button {
  padding: 8px 12px;
  border: 0;
  border-radius: 7px;
  background: var(--landing-indigo);
  color: #fff;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
}

.product-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-summary > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: #fff;
}

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

.product-summary small {
  color: var(--landing-muted);
  font-size: 8px;
}

.product-summary strong {
  margin: 5px 0;
  font-family: var(--font-display);
  font-size: 12px;
}

.product-summary span {
  overflow: hidden;
  color: #999cad;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-table {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: #fff;
}

.product-table > div {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border-bottom: 1px solid var(--landing-line);
  font-size: 9px;
}

.product-table > div:last-child {
  border-bottom: 0;
}

.product-table > .product-table-head {
  min-height: 34px;
  background: #fafafd;
  color: #8b8e9f;
  font-size: 8px;
}

.product-table b {
  font-weight: 600;
}

.product-table span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.receipt-thumb {
  display: inline-block;
  width: 25px;
  height: 32px;
  border: 1px solid #e0ded8;
  border-radius: 3px;
  background: repeating-linear-gradient(#fffdf8 0 6px, #dfddd4 7px, #fffdf8 8px);
}

.status-review,
.status-posted {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 20px;
  font-size: 7px;
  font-weight: 700;
}

.status-review {
  background: rgba(228, 139, 46, 0.11);
  color: #b96b1e;
}

.status-posted {
  background: rgba(21, 150, 108, 0.1);
  color: var(--success);
}

.product-detail {
  padding: 28px 20px;
  border-left: 1px solid var(--landing-line);
  background: #fff;
}

.detail-label {
  color: #797d90;
  font-size: 9px;
  font-weight: 700;
}

.detail-receipt {
  display: grid;
  height: 110px;
  align-content: center;
  gap: 9px;
  margin: 14px 0 17px;
  padding: 20px;
  border-radius: 9px;
  background: #f1eee5;
}

.detail-receipt div {
  height: 4px;
  border-radius: 3px;
  background: rgba(103, 96, 76, 0.25);
}

.detail-receipt div:nth-child(2) {
  width: 74%;
}

.detail-receipt div:nth-child(3) {
  width: 88%;
}

.product-detail label {
  display: block;
  margin-bottom: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--landing-line);
  color: #9497a7;
  font-size: 8px;
}

.product-detail strong {
  display: block;
  margin-top: 2px;
  color: var(--landing-ink);
  font-size: 10px;
}

.detail-ready {
  display: block;
  margin-top: 15px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(21, 150, 108, 0.09);
  color: var(--success);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.landing-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.landing-benefit {
  padding: 28px;
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  background: #fff;
}

.landing-benefit > span,
.control-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(103, 81, 232, 0.1);
  color: var(--landing-indigo);
  font-size: 17px;
  font-weight: 700;
  place-items: center;
}

.landing-benefit h3,
.control-card h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.landing-benefit p,
.control-card p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 13px;
  line-height: 1.65;
}

.landing-insights {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(103, 81, 232, 0.22), transparent 32%),
    var(--landing-navy);
  color: #fff;
}

.landing-insights::before {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(141, 108, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.landing-insights-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.landing-eyebrow-dark {
  color: #b9a8ff;
}

.landing-insights h2 {
  color: #fff;
}

.landing-insights h2 span {
  color: #ad99ff;
}

.landing-insights-copy > p {
  color: #b6bad0;
  font-size: 16px;
  line-height: 1.7;
}

.landing-insights-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: #d2d4e1;
  font-size: 13px;
  list-style: none;
}

.landing-insights-copy li {
  position: relative;
  padding-left: 26px;
}

.landing-insights-copy li::before {
  position: absolute;
  left: 0;
  color: #9e88ff;
  content: "✦";
}

.insights-demo {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.insights-question {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.insights-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  background: #fff;
  place-items: center;
}

.insights-avatar img {
  width: 27px;
  height: 27px;
}

.insights-question > div {
  min-width: 0;
  flex: 1;
}

.insights-question small,
.insights-question strong {
  display: block;
}

.insights-question small {
  margin-bottom: 4px;
  color: #969bb8;
  font-size: 9px;
}

.insights-question strong {
  min-height: 19px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insights-send {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 9px;
  background: var(--landing-indigo);
  place-items: center;
}

.insights-answer {
  position: relative;
  margin-top: 12px;
  padding: 22px;
  border-radius: 17px;
  background: #fff;
  color: var(--landing-ink);
}

.insights-answer-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insights-answer-head > span {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(103, 81, 232, 0.1);
  color: var(--landing-indigo);
  place-items: center;
}

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

.insights-answer-head small {
  color: var(--landing-muted);
  font-size: 8px;
}

.insights-answer-head strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.insights-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.insights-kpis > div {
  padding: 12px;
  border: 1px solid var(--landing-line);
  border-radius: 10px;
  background: #fbfbfe;
}

.insights-kpis small,
.insights-kpis strong {
  display: block;
}

.insights-kpis small {
  color: var(--landing-muted);
  font-size: 8px;
}

.insights-kpis strong {
  margin-top: 5px;
  font-size: 10px;
}

.insights-bars {
  display: grid;
  gap: 9px;
}

.insights-bars > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 10px;
  color: #74788b;
  font-size: 8px;
}

.insights-bars i {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #eeeef5;
}

.insights-bars i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--landing-indigo), var(--landing-purple));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.insights-fix-list {
  display: grid;
  gap: 8px;
}

.insights-fix-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border: 1px solid var(--landing-line);
  border-radius: 10px;
  background: #fbfbfe;
}

.insights-fix-list > div > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 8px;
  background: rgba(103, 81, 232, 0.1);
  color: var(--landing-indigo);
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.insights-fix-list p {
  margin: 0;
}

.insights-fix-list strong,
.insights-fix-list small {
  display: block;
}

.insights-fix-list strong {
  font-size: 9px;
}

.insights-fix-list small {
  margin-top: 2px;
  color: #8a8d9f;
  font-size: 7px;
}

.is-visible .insights-bars i::after {
  animation: landing-bars 1s 0.4s ease forwards;
}

.insights-note {
  display: block;
  margin-top: 16px;
  color: #a0a3b2;
  font-size: 8px;
  text-align: right;
}

.landing-control {
  background: #fff;
}

.landing-control-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.control-card {
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.control-card-featured {
  min-height: 478px;
  grid-row: span 2;
  padding: 42px;
  background: linear-gradient(145deg, #faf9ff, #f4f1ff);
}

.control-card-featured > p {
  max-width: 430px;
  font-size: 15px;
}

.control-review {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid rgba(103, 81, 232, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(31, 25, 77, 0.08);
}

.control-review span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--landing-line);
  color: #55596e;
  font-size: 12px;
}

.control-review i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(21, 150, 108, 0.1);
}

.control-review strong {
  margin-top: 5px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(21, 150, 108, 0.09);
  color: var(--success);
  font-size: 11px;
  text-align: center;
}

.team-role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 38px;
}

.team-role-list > span {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 13px;
  border: 1px solid rgba(103, 81, 232, 0.1);
  border-radius: 12px;
  background: #fff;
}

.team-role-list i {
  display: grid;
  width: 28px;
  height: 28px;
  grid-row: span 2;
  border-radius: 50%;
  background: #ece9ff;
  color: var(--landing-indigo);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.team-role-list b {
  font-family: var(--font-display);
  font-size: 10px;
}

.team-role-list small {
  color: #8c8fa0;
  font-size: 8px;
}

.landing-cta {
  padding: 20px 0 100px;
  background: #fff;
}

.landing-cta-card {
  position: relative;
  overflow: hidden;
  padding: 82px 60px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #7761ef, #5d43da);
  box-shadow: 0 32px 70px rgba(103, 81, 232, 0.25);
  color: #fff;
  text-align: center;
}

.landing-kicker-light {
  color: #ddd7ff;
}

.landing-cta h2 {
  position: relative;
  color: #fff;
}

.landing-cta p {
  position: relative;
  max-width: 600px;
  margin: 0 auto 28px;
  color: #e4e0fa;
  font-size: 16px;
}

.landing-cta-actions {
  position: relative;
  justify-content: center;
}

.landing-button-light {
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 16, 43, 0.15);
  color: var(--landing-indigo);
}

.landing-button-light:hover {
  color: var(--landing-indigo);
}

.landing-text-button-light {
  color: #fff;
}

.landing-text-button-light:hover {
  color: #fff;
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.cta-orbit-one {
  top: -180px;
  right: -80px;
  width: 480px;
  height: 480px;
}

.cta-orbit-two {
  bottom: -240px;
  left: -80px;
  width: 430px;
  height: 430px;
}

.landing-footer {
  padding: 62px 0 34px;
  border-top: 1px solid var(--landing-line);
  background: #f8f8fb;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.landing-footer p {
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 12px;
}

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

.landing-footer nav a {
  color: #565a6e;
  font-size: 12px;
  font-weight: 600;
}

.landing-footer .landing-footer-legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--landing-line);
  color: #979aaa;
  font-size: 10px;
}

.landing-legal {
  padding: 48px 0 88px;
}

.landing-legal-doc {
  max-width: 720px;
}

.landing-legal-doc h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.landing-legal-doc .landing-legal-updated {
  margin: 0 0 36px;
  color: var(--landing-muted);
  font-size: 14px;
}

.landing-legal-doc h2 {
  margin: 32px 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.landing-legal-doc p,
.landing-legal-doc li {
  color: #3f4254;
  font-size: 15px;
  line-height: 1.65;
}

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

.landing-legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.landing-legal-doc a {
  color: var(--primary);
  font-weight: 600;
}

.landing-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes landing-float {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes landing-drift {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-22px, 12px, 0) scale(1.03); }
}

@keyframes landing-scan {
  0%,
  100% { opacity: 0; transform: translateY(0); }
  15% { opacity: 1; }
  70% { opacity: 1; transform: translateY(188px); }
  85%,
  100% { opacity: 0; transform: translateY(188px); }
}

@keyframes landing-travel {
  from { left: 0; }
  to { left: calc(100% - 10px); }
}

@keyframes landing-pulse {
  0% { box-shadow: 0 0 0 0 rgba(21, 150, 108, 0.35); }
  75%,
  100% { box-shadow: 0 0 0 12px rgba(21, 150, 108, 0); }
}

@keyframes landing-bars {
  to { transform: scaleX(1); }
}

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

  .landing-hero-copy {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  .landing-hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .landing-hero-actions,
  .landing-check-list {
    justify-content: center;
  }

  .landing-journey {
    width: min(620px, 100%);
    margin: 5px auto 0;
  }

  .platform-stage {
    width: min(660px, 100%);
    margin: 5px auto 0;
  }

  .landing-product-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-shell {
    grid-template-columns: 130px 1fr;
  }

  .product-detail {
    display: none;
  }

  .landing-insights-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .landing-insights-copy {
    max-width: 650px;
  }

  .landing-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .landing-container {
    width: min(100% - 32px, 620px);
  }

  .landing-header,
  .landing-header.is-scrolled {
    height: 66px;
  }

  .landing-menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--landing-line);
    border-radius: 11px;
    background: #fff;
    place-content: center;
  }

  .landing-menu-button > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 2px 0;
    border-radius: 2px;
    background: var(--landing-navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .landing-menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .landing-menu-button[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .landing-menu-button[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .landing-menu {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--landing-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 25px 50px rgba(31, 25, 77, 0.14);
  }

  .landing-menu.is-open {
    display: grid;
    gap: 0;
  }

  .landing-menu > a {
    padding: 12px 8px;
  }

  .landing-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--landing-line);
    text-align: center;
  }

  .landing-sign-in {
    display: grid;
    min-height: 42px;
    border: 1px solid var(--landing-line);
    border-radius: 10px;
    place-items: center;
  }

  .landing-hero {
    padding: 118px 0 70px;
  }

  .landing-hero-grid {
    gap: 44px;
  }

  .landing-hero h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .landing-hero-lede {
    font-size: 16px;
  }

  .landing-journey {
    width: 100%;
    max-width: 100%;
    min-height: 430px;
    overflow-x: hidden;
    transform: none;
  }

  .platform-stage {
    width: 100%;
    max-width: 100%;
    min-height: 450px;
    overflow-x: hidden;
    transform: none;
  }

  .landing-proof-grid {
    grid-template-columns: 1fr;
    padding: 15px 0;
  }

  .landing-proof-grid > div {
    min-height: 86px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing-proof-grid > div:last-child {
    border-bottom: 0;
  }

  .landing-section {
    padding: 84px 0;
  }

  .landing-section-heading {
    margin-bottom: 48px;
  }

  .landing-section-heading h2,
  .landing-product-intro h2,
  .landing-insights h2,
  .landing-cta h2 {
    font-size: 36px;
  }

  .landing-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-step {
    padding: 22px;
    border: 1px solid var(--landing-line);
    border-radius: 20px;
  }

  .landing-step-number {
    top: 13px;
    left: 25px;
    transform: none;
  }

  .landing-step-connector {
    width: 1px;
    height: 34px;
    margin: -10px auto;
  }

  .landing-step-connector span {
    display: none;
  }

  .landing-product {
    overflow: hidden;
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .product-shell {
    grid-template-columns: 125px 1fr;
  }

  .landing-benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .landing-insights {
    padding: 90px 0;
  }

  .insights-demo {
    padding: 11px;
  }

  .landing-control-grid {
    grid-template-columns: 1fr;
  }

  .control-card-featured {
    min-height: auto;
    grid-row: auto;
    padding: 30px;
  }

  .landing-cta {
    padding-bottom: 72px;
  }

  .landing-cta-card {
    padding: 66px 24px;
  }

  .landing-cta-actions {
    flex-direction: column;
  }

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

  .landing-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .landing-hero-actions {
    flex-direction: column;
  }

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

  .landing-check-list {
    display: grid;
    justify-content: start;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .landing-journey {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow-x: hidden;
    transform: none;
  }

  .platform-stage {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow-x: hidden;
    transform: none;
  }

  .landing-section-heading h2,
  .landing-product-intro h2,
  .landing-insights h2,
  .landing-cta h2 {
    font-size: 32px;
  }

  .product-stage {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .landing-benefit-grid {
    margin-top: 22px;
  }

  .insights-kpis {
    grid-template-columns: 1fr;
  }

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

  .landing-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .insights-bars i::after {
    transform: scaleX(1);
  }
}
