:root {
  --surface: #f7f9fb;
  --surface-soft: #eef4fb;
  --card: #ffffff;
  --card-muted: #f8fafc;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --ink: #171c24;
  --ink-muted: #475569;
  --primary: #005bbf;
  --primary-bright: #1a73e8;
  --secondary: #4b41e1;
  --teal: #10b6ca;
  --green: #19b768;
  --shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 4px 6px rgba(15, 23, 42, 0.05), 0 22px 30px rgba(15, 23, 42, 0.13);
  --radius-card: 16px;
  --radius-large: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--surface);
}

.page {
  min-height: 100%;
  background: var(--surface);
}

.screen,
.second-screen,
.section-screen {
  scroll-margin-block-start: 0;
}

.screen-nav {
  position: fixed;
  top: 50%;
  right: 26px;
  z-index: 50;
  display: grid;
  gap: 4px;
  width: 36px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(191, 219, 254, 0.66);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
}

.screen-nav::after {
  position: absolute;
  inset: -34px -22px -34px -176px;
  z-index: 0;
  content: "";
  background: transparent;
}

.screen-nav::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  z-index: 1;
  width: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(96, 165, 250, 0.36) 18%,
    rgba(96, 165, 250, 0.36) 82%,
    transparent
  );
  transform: translateX(-50%);
}

.screen-nav__link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #5f718b;
  text-decoration: none;
  outline: none;
}

.screen-nav__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  max-width: 150px;
  padding: 5px 9px;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, -50%);
  transition:
    opacity 460ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    color 220ms ease,
    box-shadow 280ms ease;
}

.screen-nav:hover .screen-nav__label,
.screen-nav__link:focus-visible .screen-nav__label,
.screen-nav__link.is-active .screen-nav__label {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.screen-nav__dot {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(191, 219, 254, 0.68);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
}

.screen-nav__dot::before {
  display: block;
  width: 7px;
  height: 7px;
  content: "";
  background: #9fb4d0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0);
}

.screen-nav__link:hover,
.screen-nav__link:focus-visible,
.screen-nav__link.is-active {
  color: var(--primary);
}

.screen-nav__link:hover .screen-nav__dot::before,
.screen-nav__link:focus-visible .screen-nav__dot::before,
.screen-nav__link.is-active .screen-nav__dot::before {
  width: 11px;
  height: 11px;
  background: var(--primary-bright);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.13), 0 8px 16px rgba(26, 115, 232, 0.28);
}

.screen-nav__link:hover .screen-nav__dot,
.screen-nav__link:focus-visible .screen-nav__dot,
.screen-nav__link.is-active .screen-nav__dot {
  background: rgba(239, 246, 255, 0.86);
  border-color: rgba(147, 197, 253, 0.86);
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.16);
}

.feedback-widget {
  position: fixed;
  top: calc(50% + 126px);
  right: 23px;
  bottom: auto;
  z-index: 60;
  display: grid;
  justify-items: end;
  pointer-events: none;
  transition:
    top 280ms ease,
    right 280ms ease,
    bottom 280ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.feedback-widget.is-hidden-on-feedback {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.86);
}

.feedback-widget__toggle,
.feedback-widget__option {
  font: inherit;
}

.feedback-widget__toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  background: #1267d8;
  border: 1px solid rgba(18, 103, 216, 0.7);
  border-radius: 999px;
  box-shadow:
    0 14px 30px rgba(18, 103, 216, 0.32),
    0 0 0 4px rgba(96, 165, 250, 0.12);
  transition:
    padding 260ms ease,
    background-color 220ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

.feedback-widget__toggle:hover,
.feedback-widget__toggle:focus-visible,
.feedback-widget.is-open .feedback-widget__toggle {
  background: #0f5fc9;
  box-shadow:
    0 18px 42px rgba(18, 103, 216, 0.42),
    0 0 0 8px rgba(96, 165, 250, 0.18);
  transform: translateY(-1px);
  animation: feedback-toggle-pulse 1200ms ease-in-out infinite;
}

.feedback-widget__toggle-icon,
.feedback-widget__option-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.feedback-widget__toggle-icon {
  width: 20px;
  height: 20px;
}

.feedback-widget__toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.feedback-widget__toggle-icon svg,
.feedback-widget__option-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feedback-widget__menu {
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  bottom: auto;
  display: grid;
  gap: 8px;
  width: 254px;
  padding: 8px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 219, 254, 0.74);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateX(8px) scale(0.98);
  transform-origin: right top;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
  backdrop-filter: blur(16px);
}

.feedback-widget.is-open .feedback-widget__menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0) scale(1);
}

@keyframes feedback-toggle-pulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(18, 103, 216, 0.42),
      0 0 0 8px rgba(96, 165, 250, 0.18);
  }

  50% {
    box-shadow:
      0 20px 46px rgba(18, 103, 216, 0.48),
      0 0 0 11px rgba(96, 165, 250, 0.1);
  }
}

.feedback-widget__option {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 52px;
  padding: 9px 10px;
  color: #172033;
  text-align: left;
  cursor: pointer;
  background: rgba(248, 251, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 13px;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 180ms ease;
}

.feedback-widget__option:hover,
.feedback-widget__option:focus-visible {
  background: rgba(239, 246, 255, 0.96);
  border-color: rgba(147, 197, 253, 0.76);
  outline: none;
}

.feedback-widget__option-icon {
  width: 34px;
  height: 34px;
  color: var(--primary);
  background: rgba(219, 234, 254, 0.72);
  border-radius: 11px;
}

.feedback-widget__option[data-feedback-option="issue"] .feedback-widget__option-icon {
  color: #dc2626;
  background: rgba(254, 226, 226, 0.92);
  box-shadow:
    0 0 0 4px rgba(248, 113, 113, 0.12),
    0 10px 22px rgba(220, 38, 38, 0.16);
}

.feedback-widget__option[data-feedback-option="idea"] .feedback-widget__option-icon {
  color: #8a5a00;
  background: rgba(255, 248, 209, 0.86);
  box-shadow:
    0 0 0 4px rgba(255, 236, 153, 0.28),
    0 10px 22px rgba(217, 119, 6, 0.22);
}

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

.feedback-widget__option strong {
  display: block;
}

.feedback-widget__option strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

body,
.page,
.screen,
.second-screen,
.dashboard-card,
.dashboard-topbar,
.dashboard-sidebar,
.dashboard-nav-item,
.dashboard-nav-icon,
.dashboard-filter,
.dashboard-version,
.dashboard-status-title,
.dashboard-status-count,
.dashboard-status-dot,
.promo-module-row,
.promo-chip,
.control-button,
.promo-toggle,
.settings-field,
.settings-segmented,
.settings-segmented::before,
.settings-segment,
.module-action-notice,
.module-action-notice-icon,
.float-card,
.feature-icon,
.tag,
.module-chip,
.tag-count,
.benefits,
.benefit,
.benefit-icon,
.workflow-panel,
.platform-card,
.story-note,
.story-timeline li,
.feedback-grid article,
.final-cta,
.cta-button,
.screen-nav,
.screen-nav__label,
.screen-nav__dot::before {
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    color 220ms ease,
    box-shadow 280ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

html.is-theme-transitioning.is-interface-fading .page {
  opacity: 0.82;
  filter: saturate(0.94);
}

html.is-language-transitioning.is-interface-fading .hero-copy,
html.is-language-transitioning.is-interface-fading .orbit-tags,
html.is-language-transitioning.is-interface-fading .dashboard-card,
html.is-language-transitioning.is-interface-fading .float-card {
  opacity: 0.58;
  filter: blur(1px);
}

.screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 24px 80px 40px;
  background:
    radial-gradient(circle at 56% 20%, rgba(196, 221, 255, 0.38), transparent 34%),
    radial-gradient(circle at 9% 67%, rgba(216, 226, 255, 0.45), transparent 27%),
    radial-gradient(circle at 88% 48%, rgba(183, 234, 255, 0.42), transparent 28%),
    linear-gradient(110deg, #fbfcff 0%, #f5f8fc 44%, #eef6ff 100%);
}

.screen::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(114, 119, 133, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 119, 133, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 62% 44%, black 0%, transparent 68%);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 640px minmax(620px, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1500px;
  min-height: calc(100svh - 64px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  min-height: 680px;
  padding-top: 86px;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 22px;
}

.brand-logo {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 87, 191, 0.18));
}

h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-line {
  margin: 34px 0 0;
  max-width: 620px;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.orbit-tags {
  position: absolute;
  left: 0;
  top: 430px;
  width: 640px;
  height: 260px;
  pointer-events: none;
}

.module-map::before {
  display: none;
}

.module-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 2 10;
}

.primary-line {
  stroke: rgba(0, 91, 191, 0.24);
}

.secondary-line {
  stroke: rgba(75, 65, 225, 0.18);
}

.tertiary-line {
  stroke: rgba(0, 129, 158, 0.18);
}

.module-glow {
  position: absolute;
  display: block;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.46;
}

.glow-left {
  left: 6px;
  top: 78px;
  background: rgba(173, 199, 255, 0.76);
}

.glow-right {
  right: 28px;
  top: 34px;
  background: rgba(183, 234, 255, 0.72);
}

.tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 11px 24px;
  color: #172033;
  font-size: 21px;
  line-height: 1.18;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.09), 0 24px 42px rgba(76, 109, 177, 0.14);
  transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  animation: levitate-tag 6.4s ease-in-out infinite;
  backdrop-filter: blur(12px);
  will-change: transform;
}

.tag-platform {
  min-width: 158px;
  justify-content: center;
}

.tag-label {
  white-space: nowrap;
}

.service-logo {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.tag svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.tag-google {
  left: 238px;
  top: 76px;
  min-width: 232px;
  min-height: 62px;
  height: 62px;
  padding: 12px 28px;
  font-size: 23px;
  overflow: visible;
  --float-rotate: 4deg;
  animation-delay: -2.2s;
}

.tag-google .service-logo {
  width: 48px;
  height: 48px;
}

.tag-yandex {
  left: 44px;
  top: 22px;
  min-width: 210px;
  --float-rotate: -6deg;
  animation-delay: -0.8s;
}

.tag-gtm {
  left: 490px;
  top: 38px;
  min-width: 132px;
  --float-rotate: -2deg;
  animation-delay: -1.4s;
}

.tag-count {
  left: 8px;
  top: 156px;
  gap: 10px;
  min-height: 66px;
  padding: 10px 24px 10px 20px;
  color: #075fc4;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(216, 226, 255, 0.9));
  border-color: rgba(142, 177, 255, 0.72);
  box-shadow: 0 14px 28px rgba(76, 109, 177, 0.16), 0 26px 46px rgba(76, 109, 177, 0.16);
  --float-rotate: 0deg;
  animation-delay: -3s;
}

.tag-core strong {
  color: var(--primary);
  font-weight: 800;
}

.modules-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #1267d8;
}

.modules-icon svg {
  width: 34px;
  height: 34px;
}

.module-count-copy {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #172033;
  white-space: nowrap;
}

.module-count-copy strong {
  font-size: 26px;
  line-height: 1;
}

.module-count-copy span {
  color: #273447;
  font-size: 19px;
  font-weight: 500;
}

.module-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #415064;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  animation: levitate-chip 7.2s ease-in-out infinite;
  backdrop-filter: blur(12px);
  will-change: transform;
}

.chip-query {
  left: 268px;
  top: 26px;
  --float-rotate: 3deg;
  animation-delay: -1.6s;
}

.chip-placement {
  left: 340px;
  top: 186px;
  --float-rotate: -2deg;
  animation-delay: -4s;
}

.chip-gtm {
  left: 500px;
  top: 132px;
  --float-rotate: 4deg;
  animation-delay: -2.8s;
}

@keyframes levitate-tag {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  }

  45% {
    transform: translate3d(0, -10px, 0) rotate(calc(var(--float-rotate, 0deg) + 0.8deg));
  }

  70% {
    transform: translate3d(0, -4px, 0) rotate(calc(var(--float-rotate, 0deg) - 0.35deg));
  }
}

@keyframes levitate-chip {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(calc(var(--float-rotate, 0deg) - 0.6deg));
  }
}

.round-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(135deg, #645efb, #2aa7ff);
}

.diamond-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  border-radius: 7px;
  background: linear-gradient(135deg, #2a7df3, #65c5ff);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.52);
}

.diamond-icon.small {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.56);
}

.workspace-stage {
  position: relative;
  min-height: 1088px;
}

.workspace-stage::before {
  position: absolute;
  z-index: 1;
  left: -560px;
  right: 46px;
  top: 734px;
  height: 1px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18) 18%, rgba(8, 145, 178, 0.28) 50%, rgba(37, 99, 235, 0.18) 82%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(37, 99, 235, 0.12),
    0 24px 48px rgba(8, 145, 178, 0.14);
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  top: 138px;
  right: 4px;
  width: 820px;
  height: 492px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.dashboard-card::after {
  position: absolute;
  right: -140px;
  bottom: -120px;
  width: 520px;
  height: 280px;
  content: "";
  background: radial-gradient(circle, rgba(26, 115, 232, 0.1), transparent 70%);
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 52px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.dashboard-status-title {
  overflow: hidden;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-status-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: #94a3b8;
  border-radius: 50%;
}

.dashboard-status-count {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-version {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.dashboard-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  height: calc(100% - 52px);
  min-width: 0;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 12px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.66));
  border-right: 1px solid rgba(226, 232, 240, 0.86);
}

.dashboard-nav-item {
  display: grid;
  grid-template-columns: 36px minmax(max-content, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 10px;
  color: #334155;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
}

.dashboard-nav-item > span:last-child {
  min-width: 0;
  white-space: nowrap;
}

.dashboard-nav-item.active {
  color: #115dbc;
  background: linear-gradient(90deg, rgba(224, 239, 255, 0.96), rgba(255, 255, 255, 0.8));
  border-color: rgba(191, 219, 254, 0.9);
  box-shadow: 0 13px 28px rgba(30, 64, 175, 0.08);
}

.dashboard-nav-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #1a73e8;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 10px;
}

.dashboard-nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.dashboard-nav-icon .dashboard-nav-settings-svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.dashboard-nav-settings-svg path {
  fill: currentColor;
  stroke: none;
}

.dashboard-main {
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: 16px 14px 22px 18px;
}

.dashboard-view {
  min-width: 0;
  min-height: 0;
}

.dashboard-view[hidden] {
  display: none;
}

.dashboard-modules-view {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -4px -4px 8px;
  padding: 4px;
}

.dashboard-filters {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: visible;
}

.dashboard-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: #334155;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.dashboard-filter.active {
  color: #115dbc;
  background: rgba(219, 234, 254, 0.92);
  border-color: rgba(147, 197, 253, 0.84);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12), 0 10px 22px rgba(30, 64, 175, 0.08);
}

.promo-module-list-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.promo-module-list-shell::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 54px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(249, 252, 255, 0.96));
}

.promo-module-list {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.52) transparent;
}

.promo-module-list::-webkit-scrollbar {
  width: 6px;
}

.promo-module-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.42);
  border-radius: 999px;
}

.module-action-notice {
  --notice-progress-color: rgba(26, 115, 232, 0.62);
  position: absolute;
  z-index: 8;
  right: 16px;
  top: 48px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(370px, calc(100% - 32px));
  min-width: 0;
  padding: 12px 14px;
  color: #172033;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.88);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(30, 64, 175, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  animation: notice-pop 180ms ease-out;
  transition:
    opacity 340ms ease,
    transform 340ms ease,
    filter 340ms ease;
}

.module-action-notice[hidden] {
  display: none;
}

.module-action-notice::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background:
    linear-gradient(90deg, transparent, var(--notice-progress-color), transparent),
    var(--notice-progress-color);
  transform-origin: left center;
  animation: notice-progress 3400ms linear forwards;
}

.module-action-notice.is-hiding {
  opacity: 0;
  filter: blur(1px);
  transform: translate3d(0, -8px, 0) scale(0.985);
}

.module-action-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(219, 234, 254, 0.78);
  border: 1px solid rgba(147, 197, 253, 0.72);
  border-radius: 12px;
}

.module-action-notice-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.module-action-notice-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.module-action-notice-copy strong {
  color: #142033;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.15;
}

.module-action-notice-copy span {
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.32;
  text-overflow: ellipsis;
}

.module-action-notice.is-info {
  --notice-progress-color: rgba(79, 128, 255, 0.62);
}

.module-action-notice.is-info .module-action-notice-icon {
  background: rgba(232, 240, 255, 0.82);
}

@keyframes notice-pop {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0) scale(0.98);
  }

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

@keyframes notice-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.promo-module-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  min-width: 0;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.04);
}

.promo-module-row.is-enabled {
  background:
    linear-gradient(90deg, rgba(225, 246, 235, 0.9) 0, rgba(255, 255, 255, 0.96) 35%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(187, 222, 198, 0.84);
  box-shadow: inset 4px 0 0 #149447, 0 7px 16px rgba(15, 23, 42, 0.04);
}

.promo-module-row.is-disabled {
  opacity: 0.72;
}

.promo-module-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.promo-module-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.promo-module-copy strong {
  overflow: hidden;
  color: #142033;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-chip-list {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  color: #64748b;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
}

.promo-chip.url {
  color: #1267d8;
  background: rgba(239, 246, 255, 0.9);
  border-color: rgba(191, 219, 254, 0.86);
}

.promo-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.control-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #64748b;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 10px;
}

.control-button:hover,
.control-button.is-active {
  background: rgba(219, 234, 254, 0.96);
  border-color: rgba(147, 197, 253, 0.92);
}

.control-button svg,
.control-button img {
  width: 18px;
  height: 18px;
}

.control-button img {
  display: block;
  object-fit: contain;
}

.promo-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: #d9e2ef;
}

.promo-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22);
}

.promo-toggle.on {
  background: #149447;
}

.promo-toggle.on::after {
  left: 23px;
}

.dashboard-settings-view {
  height: 100%;
  overflow-y: auto;
  padding: 6px 4px 0 0;
}

.dashboard-settings-header {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.dashboard-settings-header span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-settings-header strong {
  color: #142033;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.2;
}

.settings-preview-grid {
  display: grid;
  gap: 12px;
}

.settings-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  background: rgba(248, 250, 252, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
}

.settings-field-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.settings-label-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.settings-setting-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.settings-setting-icon img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.settings-label {
  min-width: 0;
  color: #142033;
  font-size: 13px;
  font-weight: 720;
  line-height: 18px;
}

.settings-description {
  color: #64748b;
  font-size: 12px;
  font-weight: 560;
  line-height: 17px;
}

.settings-segmented {
  --segment-count: 1;
  --selected-index: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--segment-count), minmax(0, 1fr));
  min-width: 0;
  padding: 3px;
  overflow: hidden;
  background: #eef3f8;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 12px;
}

.settings-segmented::before {
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / var(--segment-count));
  content: "";
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateX(calc(var(--selected-index) * 100%));
  transition: transform 180ms ease;
}

.settings-segment {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 30px;
  padding: 0 10px;
  color: #64748b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 9px;
}

.settings-segment.is-selected {
  color: #115dbc;
}

.module-mini-segmented {
  min-width: 160px;
}

.float-card {
  --card-accent: #1a73e8;
  --card-accent-rgb: 26, 115, 232;
  --card-accent-2: #10b981;
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 18px 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--card-accent-rgb), 0.16);
  border-radius: 18px;
  box-shadow:
    0 18px 42px rgba(var(--card-accent-rgb), 0.13),
    0 8px 18px rgba(15, 23, 42, 0.07);
  transform-origin: center;
  backdrop-filter: blur(16px);
}

.float-card::before {
  position: absolute;
  inset: -42px auto auto -48px;
  width: 136px;
  height: 136px;
  content: "";
  background: radial-gradient(circle, rgba(var(--card-accent-rgb), 0.18), transparent 66%);
}

.float-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.08), transparent 45%);
}

.float-card > * {
  position: relative;
  z-index: 1;
}

.float-card strong,
.float-card span {
  display: block;
}

.float-card strong {
  font-size: 20px;
  line-height: 1.18;
}

.float-card div > span {
  max-width: 310px;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.32;
}

.feature-icon {
  --icon-x: 0px;
  --icon-y: 0px;
  --icon-scale: 1.08;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: #1162c3;
  border: 1px solid rgba(var(--card-accent-rgb), 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.94), transparent 40%),
    linear-gradient(145deg, rgba(var(--card-accent-rgb), 0.18), rgba(var(--card-accent-rgb), 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 15px 28px rgba(var(--card-accent-rgb), 0.22);
}

.feature-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 48px;
  height: 48px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%) translate(var(--icon-x), var(--icon-y)) scale(var(--icon-scale));
  transform-origin: center;
}

.icon-workspace {
  --icon-y: 1px;
  color: #1267d8;
}

.icon-search {
  --icon-x: -1px;
  --icon-y: -1px;
  color: #0d64c8;
}

.icon-shield {
  --icon-y: -1px;
  color: #6d5dfc;
}

.icon-gtm {
  color: #1684e8;
}

.icon-placement {
  --icon-x: -1px;
  color: #087f8f;
}

.icon-highlight {
  --icon-x: 1px;
  color: #2563eb;
}

.card-google {
  top: 790px;
  left: -174px;
  width: 382px;
  --card-accent: #1a73e8;
  --card-accent-rgb: 26, 115, 232;
  --card-accent-2: #16a34a;
}

.card-search {
  top: 790px;
  left: -596px;
  width: 382px;
  --card-accent: #0d64c8;
  --card-accent-rgb: 13, 100, 200;
  --card-accent-2: #22c55e;
}

.card-popup {
  top: 790px;
  left: 248px;
  width: 382px;
  --card-accent: #7c5cff;
  --card-accent-rgb: 124, 92, 255;
  --card-accent-2: #38bdf8;
}

.card-gtm {
  top: 950px;
  left: -64px;
  width: 382px;
  --card-accent: #1684e8;
  --card-accent-rgb: 22, 132, 232;
  --card-accent-2: #60a5fa;
}

.card-placement {
  top: 950px;
  left: -486px;
  width: 382px;
  --card-accent: #0891b2;
  --card-accent-rgb: 8, 145, 178;
  --card-accent-2: #2563eb;
}

.card-ads {
  top: 950px;
  left: 358px;
  width: 382px;
  --card-accent: #2563eb;
  --card-accent-rgb: 37, 99, 235;
  --card-accent-2: #f59e0b;
}

.second-screen {
  position: relative;
  display: grid;
  align-content: start;
  gap: 34px;
  min-height: 100svh;
  padding: 128px 80px 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 18%, rgba(196, 221, 255, 0.35), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(183, 234, 255, 0.36), transparent 30%),
    linear-gradient(110deg, #f8fbff 0%, #f4f8fc 48%, #eef6ff 100%);
}

.second-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(114, 119, 133, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 119, 133, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 55% 46%, black 0%, transparent 72%);
}

.second-screen-copy {
  position: relative;
  z-index: 1;
  width: min(1460px, 100%);
  margin: 0 auto;
}

.second-screen-copy span {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.second-screen-copy h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: #172033;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  max-width: 1460px;
  min-height: 124px;
  margin: 0 auto;
  padding: 24px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.74);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.benefit {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
  padding: 0 14px;
  color: #1f2937;
  font-size: 19px;
  line-height: 1.24;
}

.benefit + .benefit {
  border-left: 1px solid var(--line-strong);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
}

.benefit-icon.blue {
  color: #0062c7;
  background: #d8e7ff;
}

.benefit-icon.teal {
  color: #005b70;
  background: #a9edf8;
}

.benefit-icon.violet {
  color: #574ee1;
  background: #e2dfff;
}

.second-screen-copy p,
.section-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.55;
}

.workflow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1460px, 100%);
  margin: 0 auto;
}

.workflow-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(14px);
}

.workflow-panel.is-before {
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.86);
}

.workflow-panel.is-after {
  background:
    linear-gradient(135deg, rgba(226, 246, 255, 0.88), rgba(239, 246, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(147, 197, 253, 0.74);
}

.workflow-panel-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 42px;
  min-height: 30px;
  padding: 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(219, 234, 254, 0.72);
  border: 1px solid rgba(147, 197, 253, 0.56);
  border-radius: 999px;
}

.workflow-panel h3 {
  margin: 0;
  color: #172033;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.16;
}

.workflow-panel ul,
.platform-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-panel li,
.platform-card li {
  position: relative;
  padding-left: 24px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.workflow-panel li::before,
.platform-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--primary-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.11);
}

.section-screen {
  position: relative;
  display: grid;
  gap: 42px;
  min-height: 100svh;
  padding: 118px 80px 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 226, 255, 0.42), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(183, 234, 255, 0.32), transparent 30%),
    linear-gradient(112deg, #fbfcff 0%, #f4f8fc 50%, #eef6ff 100%);
}

.section-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(114, 119, 133, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 119, 133, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 54% 44%, black 0%, transparent 72%);
}

.modules-screen {
  align-content: start;
  gap: clamp(64px, 8vh, 104px);
}

.section-copy {
  position: relative;
  z-index: 1;
  width: min(1460px, 100%);
  margin: 0 auto;
}

.section-copy > span {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2 {
  max-width: 860px;
  margin: 12px 0 0;
  color: #172033;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.platform-grid,
.feedback-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1460px, 100%);
  margin: 0 auto;
}

.platform-card {
  --platform-float-x: 0px;
  --platform-float-y: 0px;
  --platform-float-rotate: 0deg;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.09);
  transform: translate3d(var(--platform-float-x), var(--platform-float-y), 0) rotate(var(--platform-float-rotate));
  animation: platform-card-float 9s ease-in-out infinite;
  backdrop-filter: blur(14px);
  will-change: transform;
}

.platform-card:nth-child(2) {
  animation-delay: -2.4s;
}

.platform-card:nth-child(3) {
  animation-delay: -4.8s;
}

.platform-card:nth-child(4) {
  animation-delay: -1.3s;
}

.platform-card:hover {
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.13);
}

@keyframes platform-card-float {
  0%,
  100% {
    transform: translate3d(var(--platform-float-x), var(--platform-float-y), 0) rotate(var(--platform-float-rotate));
  }

  44% {
    transform: translate3d(
      var(--platform-float-x),
      calc(var(--platform-float-y) - 10px),
      0
    ) rotate(calc(var(--platform-float-rotate) + 0.45deg));
  }

  72% {
    transform: translate3d(
      var(--platform-float-x),
      calc(var(--platform-float-y) - 4px),
      0
    ) rotate(calc(var(--platform-float-rotate) - 0.22deg));
  }
}

@media (min-width: 1351px) {
  .platform-card:nth-child(1) {
    --platform-float-x: -4px;
    --platform-float-y: -8px;
    --platform-float-rotate: -0.8deg;
  }

  .platform-card:nth-child(2) {
    --platform-float-x: 6px;
    --platform-float-y: 18px;
    --platform-float-rotate: 0.7deg;
  }

  .platform-card:nth-child(3) {
    --platform-float-x: 12px;
    --platform-float-y: 2px;
    --platform-float-rotate: -0.35deg;
  }

  .platform-card:nth-child(4) {
    --platform-float-x: 20px;
    --platform-float-y: 24px;
    --platform-float-rotate: 0.45deg;
  }
}

.platform-card > img,
.platform-generic-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.platform-card > img.platform-logo-google {
  width: 68px;
  height: 68px;
  margin: -7px 0 -7px -4px;
}

.platform-generic-icon {
  color: #087f8f;
  background: rgba(207, 250, 254, 0.74);
  border: 1px solid rgba(103, 232, 249, 0.64);
  border-radius: 16px;
}

.platform-generic-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-card strong,
.feedback-grid strong,
.final-cta strong {
  display: block;
  color: #172033;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.platform-card div > span,
.feedback-grid span,
.final-cta span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.story-screen {
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 221, 255, 0.36), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(183, 234, 255, 0.28), transparent 30%),
    linear-gradient(112deg, #f8fbff 0%, #f4f8fc 50%, #eef6ff 100%);
}

.story-layout {
  position: relative;
  z-index: 1;
  width: min(1460px, 100%);
  margin: 0 auto;
}

.story-journey {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  min-width: 0;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(219, 234, 254, 0.9), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(207, 250, 254, 0.72), transparent 30%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

.story-journey::before {
  position: absolute;
  inset: 18px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(191, 219, 254, 0.42);
  border-radius: calc(var(--radius-card) - 8px);
}

.story-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 219, 254, 0.7);
  border-radius: calc(var(--radius-card) - 6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.story-note-kicker {
  width: fit-content;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-note strong {
  color: #172033;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.story-note p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}

.story-flow {
  display: grid;
  gap: 9px;
  margin-top: 8px;
}

.story-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px 0 32px;
  color: #1e4f94;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(191, 219, 254, 0.68);
  border-radius: 999px;
}

.story-flow span::before {
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--primary-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.story-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-timeline::before {
  position: absolute;
  left: 28px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(18, 103, 216, 0.08), rgba(18, 103, 216, 0.34), rgba(20, 184, 166, 0.12));
  border-radius: 999px;
}

.story-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: calc(var(--radius-card) - 8px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.story-timeline li > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  background: rgba(219, 234, 254, 0.76);
  border: 1px solid rgba(147, 197, 253, 0.62);
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(18, 103, 216, 0.12);
}

.story-timeline small {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-timeline strong {
  display: block;
  color: #172033;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.story-timeline p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.feedback-screen {
  align-content: center;
  gap: clamp(30px, 6vh, 64px);
}

.feedback-screen .section-copy {
  max-width: min(1080px, 100%);
}

.feedback-screen .section-copy h2 {
  max-width: 980px;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.05;
}

.feedback-inline-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.feedback-inline-action {
  width: min(310px, 100%);
  min-height: 64px;
  padding: 12px;
}

.feedback-grid article {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-card);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.86);
  border-radius: var(--radius-card);
  box-shadow: 0 26px 52px rgba(30, 64, 175, 0.11);
  backdrop-filter: blur(14px);
}

.final-cta img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
}

.cta-button.primary {
  color: #ffffff;
  background: #1267d8;
  border: 1px solid rgba(18, 103, 216, 0.7);
  box-shadow: 0 14px 28px rgba(18, 103, 216, 0.22);
}

.cta-button.secondary {
  color: #1267d8;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(147, 197, 253, 0.74);
}

.test-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 226, 255, 0.42), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(183, 234, 255, 0.32), transparent 30%),
    linear-gradient(112deg, #fbfcff 0%, #f4f8fc 50%, #eef6ff 100%);
}

.test-screen {
  align-content: start;
  gap: 32px;
}

.test-screen .section-copy h1 {
  max-width: 900px;
  margin: 12px 0 0;
  color: #172033;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
}

.test-screen .section-copy p {
  max-width: 780px;
}

[data-theme="dark"] {
  --surface: #080d16;
  --surface-soft: #101827;
  --card: #121a28;
  --card-muted: #162033;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --ink: #eef4ff;
  --ink-muted: #b8c6dc;
  --primary: #6fb3ff;
  --primary-bright: #77b7ff;
  --secondary: #8b84ff;
  --teal: #32d4ea;
  --green: #43d486;
  --shadow-soft: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-float: 0 4px 8px rgba(0, 0, 0, 0.22), 0 22px 38px rgba(0, 0, 0, 0.32);
}

[data-theme="dark"] body,
[data-theme="dark"] .page {
  color: var(--ink);
  background: var(--surface);
}

[data-theme="dark"] .screen {
  background:
    radial-gradient(circle at 58% 18%, rgba(40, 112, 198, 0.3), transparent 34%),
    radial-gradient(circle at 10% 68%, rgba(83, 92, 184, 0.22), transparent 28%),
    radial-gradient(circle at 88% 48%, rgba(24, 184, 218, 0.22), transparent 30%),
    linear-gradient(112deg, #0a0f19 0%, #0d1422 48%, #101f31 100%);
}

[data-theme="dark"] .screen::before,
[data-theme="dark"] .second-screen::before {
  background-image:
    linear-gradient(rgba(174, 194, 224, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 194, 224, 0.055) 1px, transparent 1px);
}

[data-theme="dark"] .workspace-stage::before {
  background:
    linear-gradient(90deg, transparent, rgba(111, 179, 255, 0.12) 18%, rgba(50, 212, 234, 0.2) 50%, rgba(111, 179, 255, 0.12) 82%, transparent);
  box-shadow:
    0 1px 0 rgba(148, 163, 184, 0.08),
    0 8px 18px rgba(111, 179, 255, 0.1),
    0 24px 48px rgba(24, 184, 218, 0.12);
}

[data-theme="dark"] h1,
[data-theme="dark"] .second-screen-copy h2 {
  color: #f1f6ff;
}

[data-theme="dark"] .hero-line,
[data-theme="dark"] .second-screen-copy span {
  color: #65a9ff;
}

[data-theme="dark"] .tag,
[data-theme="dark"] .module-chip {
  color: #dbeafe;
  background:
    linear-gradient(145deg, rgba(19, 28, 44, 0.92), rgba(31, 43, 63, 0.82)),
    rgba(15, 23, 42, 0.86);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .module-glow {
  opacity: 0.22;
  filter: blur(38px);
}

[data-theme="dark"] .glow-left {
  background: rgba(68, 86, 154, 0.42);
}

[data-theme="dark"] .glow-right {
  background: rgba(24, 135, 166, 0.34);
}

[data-theme="dark"] .tag-count {
  color: #dbeafe;
  background: rgba(31, 43, 80, 0.92);
  border-color: rgba(96, 165, 250, 0.34);
}

[data-theme="dark"] .tag-count .modules-icon,
[data-theme="dark"] .tag-count .module-count-copy strong {
  color: var(--primary);
}

[data-theme="dark"] .tag-count .module-count-copy,
[data-theme="dark"] .tag-count .module-count-copy span {
  color: #dbeafe;
}

[data-theme="dark"] .dashboard-card {
  background: rgba(13, 20, 32, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

[data-theme="dark"] .dashboard-card::after {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 70%);
}

[data-theme="dark"] .dashboard-topbar {
  background: rgba(14, 22, 36, 0.84);
  border-bottom-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .promo-module-copy strong,
[data-theme="dark"] .dashboard-settings-header strong,
[data-theme="dark"] .settings-label {
  color: #eef4ff;
}

[data-theme="dark"] .dashboard-status-title {
  color: #a8d3ff;
}

[data-theme="dark"] .dashboard-status-count {
  color: #b7c7dd;
}

[data-theme="dark"] .dashboard-status-dot {
  background: rgba(142, 197, 255, 0.62);
}

[data-theme="dark"] .dashboard-version {
  color: #b7c7dd;
  background: rgba(18, 28, 44, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .dashboard-sidebar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(12, 18, 30, 0.72));
  border-right-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .dashboard-nav-item {
  color: #c7d4e8;
}

[data-theme="dark"] .dashboard-nav-item.active {
  color: #a8d3ff;
  background: linear-gradient(90deg, rgba(31, 78, 137, 0.72), rgba(20, 30, 48, 0.7));
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .dashboard-nav-icon,
[data-theme="dark"] .control-button {
  color: #8ec5ff;
  background: rgba(18, 28, 44, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .dashboard-filter {
  color: #dbeafe;
  background: rgba(18, 28, 44, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .dashboard-filter.active,
[data-theme="dark"] .control-button:hover,
[data-theme="dark"] .control-button.is-active {
  color: #a8d3ff;
  background: rgba(30, 64, 120, 0.72);
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.11), 0 10px 22px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .promo-module-list-shell::after {
  background: linear-gradient(180deg, rgba(13, 20, 32, 0), rgba(13, 20, 32, 0.96));
}

[data-theme="dark"] .promo-module-row {
  background: rgba(17, 26, 40, 0.94);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .promo-module-row.is-enabled {
  background:
    linear-gradient(90deg, rgba(20, 128, 72, 0.22) 0, rgba(17, 26, 40, 0.96) 36%),
    rgba(17, 26, 40, 0.96);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: inset 4px 0 0 #32c46c, 0 7px 18px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .promo-chip {
  color: #aebdd3;
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .promo-chip.url {
  color: #8ec5ff;
  background: rgba(30, 64, 120, 0.36);
  border-color: rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .promo-toggle {
  background: #334155;
}

[data-theme="dark"] .promo-toggle.on {
  background: #21a65d;
}

[data-theme="dark"] .module-action-notice {
  --notice-progress-color: rgba(142, 197, 255, 0.5);
  color: #dbeafe;
  background:
    linear-gradient(145deg, rgba(19, 28, 44, 0.96), rgba(15, 23, 42, 0.9)),
    rgba(15, 23, 42, 0.94);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 8px 22px rgba(30, 64, 175, 0.16);
}

[data-theme="dark"] .module-action-notice.is-info {
  --notice-progress-color: rgba(111, 179, 255, 0.52);
}

[data-theme="dark"] .module-action-notice-icon {
  background: rgba(30, 64, 120, 0.42);
  border-color: rgba(96, 165, 250, 0.28);
}

[data-theme="dark"] .module-action-notice-copy strong {
  color: #eef4ff;
}

[data-theme="dark"] .module-action-notice-copy span {
  color: #aebdd3;
}

[data-theme="dark"] .settings-field {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .dashboard-settings-header span,
[data-theme="dark"] .settings-description {
  color: #aebdd3;
}

[data-theme="dark"] .settings-segmented {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .settings-segmented::before {
  background: rgba(30, 41, 59, 0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .settings-segment {
  color: #aebdd3;
}

[data-theme="dark"] .settings-segment.is-selected {
  color: #8ec5ff;
}

[data-theme="dark"] .float-card {
  color: #eef4ff;
  background:
    linear-gradient(145deg, rgba(19, 28, 44, 0.96), rgba(15, 23, 42, 0.88)),
    rgba(15, 23, 42, 0.92);
  border-color: rgba(var(--card-accent-rgb), 0.24);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.36);
}

[data-theme="dark"] .float-card::before {
  background: radial-gradient(circle, rgba(var(--card-accent-rgb), 0.12), transparent 68%);
}

[data-theme="dark"] .float-card::after {
  background:
    linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.12), transparent 34%),
    linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.06), transparent 46%);
}

[data-theme="dark"] .float-card div > span {
  color: #b7c7dd;
}

[data-theme="dark"] .feature-icon {
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--card-accent-rgb), 0.18), transparent 44%),
    linear-gradient(145deg, rgba(var(--card-accent-rgb), 0.22), rgba(15, 23, 42, 0.86));
  border-color: rgba(var(--card-accent-rgb), 0.28);
  box-shadow:
    inset 0 1px 0 rgba(148, 163, 184, 0.18),
    0 15px 28px rgba(var(--card-accent-rgb), 0.18);
}

[data-theme="dark"] .second-screen {
  background:
    radial-gradient(circle at 52% 18%, rgba(40, 112, 198, 0.26), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(24, 184, 218, 0.18), transparent 30%),
    linear-gradient(110deg, #080d16 0%, #0d1422 50%, #101f31 100%);
}

[data-theme="dark"] .benefits {
  background: rgba(13, 20, 32, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .benefit {
  color: #e5edf8;
}

[data-theme="dark"] .benefit + .benefit {
  border-left-color: rgba(148, 163, 184, 0.24);
}

[data-theme="dark"] .benefit-icon.blue {
  color: #9dccff;
  background: rgba(37, 99, 235, 0.24);
}

[data-theme="dark"] .benefit-icon.teal {
  color: #80ecff;
  background: rgba(20, 184, 166, 0.2);
}

[data-theme="dark"] .benefit-icon.violet {
  color: #b7b2ff;
  background: rgba(99, 102, 241, 0.22);
}

[data-theme="dark"] .section-screen,
[data-theme="dark"] .story-screen {
  background:
    radial-gradient(circle at 18% 18%, rgba(83, 92, 184, 0.2), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(24, 184, 218, 0.16), transparent 30%),
    linear-gradient(112deg, #080d16 0%, #0d1422 50%, #101f31 100%);
}

[data-theme="dark"] .section-screen::before {
  background-image:
    linear-gradient(rgba(174, 194, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 194, 224, 0.045) 1px, transparent 1px);
}

[data-theme="dark"] .second-screen-copy h2,
[data-theme="dark"] .section-copy h2,
[data-theme="dark"] .workflow-panel h3,
[data-theme="dark"] .platform-card strong,
[data-theme="dark"] .story-note strong,
[data-theme="dark"] .story-timeline strong,
[data-theme="dark"] .feedback-grid strong,
[data-theme="dark"] .final-cta strong {
  color: #eef4ff;
}

[data-theme="dark"] .second-screen-copy p,
[data-theme="dark"] .section-copy p,
[data-theme="dark"] .workflow-panel li,
[data-theme="dark"] .platform-card li,
[data-theme="dark"] .platform-card div > span,
[data-theme="dark"] .story-note p,
[data-theme="dark"] .story-timeline p,
[data-theme="dark"] .feedback-grid span,
[data-theme="dark"] .final-cta span {
  color: #aebdd3;
}

[data-theme="dark"] .section-copy > span,
[data-theme="dark"] .workflow-panel-label,
[data-theme="dark"] .story-note-kicker,
[data-theme="dark"] .story-timeline small,
[data-theme="dark"] .story-timeline li > span {
  color: #8ec5ff;
}

[data-theme="dark"] .story-flow span {
  color: #a8d3ff;
  background: rgba(15, 23, 42, 0.48);
  border-color: rgba(96, 165, 250, 0.22);
}

[data-theme="dark"] .story-journey {
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 64, 120, 0.28), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(20, 184, 166, 0.14), transparent 30%),
    rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .story-journey::before {
  border-color: rgba(96, 165, 250, 0.18);
}

[data-theme="dark"] .workflow-panel,
[data-theme="dark"] .workflow-panel.is-before,
[data-theme="dark"] .workflow-panel.is-after,
[data-theme="dark"] .platform-card,
[data-theme="dark"] .story-note,
[data-theme="dark"] .story-timeline li,
[data-theme="dark"] .feedback-grid article {
  background:
    linear-gradient(145deg, rgba(19, 28, 44, 0.94), rgba(15, 23, 42, 0.86)),
    rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

[data-theme="dark"] .workflow-panel-label,
[data-theme="dark"] .story-timeline li > span {
  background: rgba(30, 64, 120, 0.42);
  border-color: rgba(96, 165, 250, 0.28);
}

[data-theme="dark"] .story-timeline::before {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.08), rgba(96, 165, 250, 0.34), rgba(45, 212, 191, 0.12));
}

[data-theme="dark"] .platform-generic-icon {
  color: #80ecff;
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(45, 212, 191, 0.28);
}

[data-theme="dark"] .feedback-widget__toggle {
  background: #1a73e8;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feedback-widget__toggle:hover,
[data-theme="dark"] .feedback-widget__toggle:focus-visible,
[data-theme="dark"] .feedback-widget.is-open .feedback-widget__toggle {
  background: #2a83f4;
  box-shadow:
    0 18px 42px rgba(30, 120, 255, 0.34),
    0 0 0 8px rgba(96, 165, 250, 0.16);
}

[data-theme="dark"] .feedback-widget__menu {
  background: rgba(13, 20, 32, 0.9);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .feedback-widget__option {
  color: #eef4ff;
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .feedback-widget__option:hover,
[data-theme="dark"] .feedback-widget__option:focus-visible {
  background: rgba(30, 64, 120, 0.42);
  border-color: rgba(96, 165, 250, 0.34);
}

[data-theme="dark"] .feedback-widget__option-icon {
  color: #8ec5ff;
  background: rgba(30, 64, 120, 0.42);
}

[data-theme="dark"] .feedback-widget__option[data-feedback-option="issue"] .feedback-widget__option-icon {
  color: #ff8a8a;
  background: rgba(127, 29, 29, 0.42);
  box-shadow:
    0 0 0 4px rgba(248, 113, 113, 0.14),
    0 12px 24px rgba(220, 38, 38, 0.22);
}

[data-theme="dark"] .feedback-widget__option[data-feedback-option="idea"] .feedback-widget__option-icon {
  color: #7c4a00;
  background: rgba(255, 248, 209, 0.88);
  box-shadow:
    0 0 0 4px rgba(255, 236, 153, 0.24),
    0 12px 24px rgba(245, 158, 11, 0.2);
}

[data-theme="dark"] .final-cta {
  background:
    linear-gradient(145deg, rgba(19, 28, 44, 0.96), rgba(15, 23, 42, 0.9)),
    rgba(15, 23, 42, 0.94);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .cta-button.secondary {
  color: #8ec5ff;
  background: rgba(18, 28, 44, 0.82);
  border-color: rgba(96, 165, 250, 0.28);
}

[data-theme="dark"] .screen-nav {
  background: rgba(10, 17, 30, 0.72);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .screen-nav::before {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(96, 165, 250, 0.26) 18%,
    rgba(96, 165, 250, 0.26) 82%,
    transparent
  );
}

[data-theme="dark"] .screen-nav__link {
  color: #8da4c0;
}

[data-theme="dark"] .screen-nav__label {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .screen-nav__dot::before {
  background: #607691;
  border-color: rgba(15, 23, 42, 0.92);
}

[data-theme="dark"] .screen-nav__dot {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .screen-nav__link:hover,
[data-theme="dark"] .screen-nav__link:focus-visible,
[data-theme="dark"] .screen-nav__link.is-active {
  color: #8ec5ff;
}

[data-theme="dark"] .screen-nav__link:hover .screen-nav__dot::before,
[data-theme="dark"] .screen-nav__link:focus-visible .screen-nav__dot::before,
[data-theme="dark"] .screen-nav__link.is-active .screen-nav__dot::before {
  background: #76b7ff;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.16), 0 8px 16px rgba(96, 165, 250, 0.24);
}

[data-theme="dark"] .screen-nav__link:hover .screen-nav__dot,
[data-theme="dark"] .screen-nav__link:focus-visible .screen-nav__dot,
[data-theme="dark"] .screen-nav__link.is-active .screen-nav__dot {
  background: rgba(22, 38, 64, 0.86);
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 12px 24px rgba(96, 165, 250, 0.14);
}

@media (min-width: 1121px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  .screen,
  .second-screen,
  .section-screen {
    scroll-snap-align: start;
  }
}

@media (max-width: 1350px) {
  .screen-nav {
    right: 12px;
  }

  .screen {
    padding: 24px 40px 34px;
  }

  .hero {
    grid-template-columns: 460px minmax(560px, 1fr);
    gap: 32px;
  }

  .brand-lockup {
    grid-template-columns: 90px 1fr;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-line {
    font-size: 33px;
  }

  .tag {
    font-size: 18px;
  }

  .orbit-tags {
    transform: scale(0.78);
    transform-origin: left top;
  }

  .dashboard-card {
    right: 0;
    width: 660px;
  }

  .workspace-stage::before {
    left: -430px;
    right: 24px;
    top: 724px;
  }

  .dashboard-shell {
    grid-template-columns: 148px minmax(0, 1fr);
  }

  .dashboard-sidebar {
    padding-inline: 9px;
  }

  .dashboard-nav-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .dashboard-main {
    padding-inline: 14px 12px;
  }

  .dashboard-filter {
    padding-inline: 11px;
  }

  .promo-controls .control-button {
    width: 30px;
    height: 30px;
  }

  .card-search {
    left: -450px;
    width: 330px;
  }

  .card-google {
    left: -104px;
    width: 330px;
  }

  .card-popup {
    left: 242px;
    width: 330px;
  }

  .card-placement {
    left: -350px;
    width: 330px;
  }

  .card-gtm {
    left: -4px;
    width: 330px;
  }

  .card-ads {
    left: 342px;
    width: 330px;
  }

  .benefit {
    gap: 16px;
    padding: 0 20px;
    font-size: 18px;
  }

  .section-screen {
    padding-inline: 40px;
  }

  .section-copy h2,
  .second-screen-copy h2 {
    font-size: 42px;
  }

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

  .story-journey {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .final-cta .cta-button.secondary {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 1120px) {
  .screen-nav {
    display: none;
  }

  .feedback-widget {
    top: calc(50% + 92px);
    right: 20px;
  }

  .feedback-widget__menu {
    width: min(254px, calc(100vw - 84px));
  }

  .screen {
    overflow: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 640px;
    padding-top: 40px;
  }

  .orbit-tags {
    top: 320px;
    transform: none;
  }

  .workspace-stage {
    min-height: 1220px;
  }

  .workspace-stage::before {
    left: 20px;
    right: 20px;
    top: 742px;
  }

  .dashboard-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .card-google {
    top: 760px;
    left: 390px;
    width: 350px;
  }

  .card-search {
    top: 760px;
    left: 20px;
    width: 350px;
  }

  .card-popup {
    top: 910px;
    left: 20px;
    width: 350px;
  }

  .card-gtm {
    top: 910px;
    left: 380px;
    width: 350px;
  }

  .card-placement {
    top: 1060px;
    left: 20px;
    width: 350px;
  }

  .card-ads {
    top: 1060px;
    left: 390px;
    width: 350px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
    margin-top: 28px;
  }

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

  .section-screen {
    min-height: 0;
    padding: 86px 40px;
  }

  .final-cta {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .final-cta .cta-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .second-screen {
    padding: 72px 40px;
  }

  .second-screen-copy h2 {
    font-size: 40px;
  }

  .benefit:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .screen {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 28px 16px;
  }

  .feedback-widget {
    right: 16px;
    top: calc(50% + 76px);
  }

  .hero {
    gap: 22px;
  }

  .hero-copy {
    min-height: 0;
    padding-top: 8px;
  }

  .brand-lockup {
    grid-template-columns: 66px 1fr;
    gap: 14px;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-line {
    margin-top: 20px;
    max-width: 100%;
    font-size: 22px;
  }

  .orbit-tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    gap: 10px;
    margin-top: 20px;
    transform: none;
  }

  .module-map::before,
  .module-map-lines,
  .module-glow,
  .module-chip {
    display: none;
  }

  .tag,
  .tag-google,
  .tag-yandex,
  .tag-gtm,
  .tag-count {
    position: static;
    animation: none;
    min-height: 46px;
    padding: 8px 14px;
    font-size: 15px;
    transform: none;
  }

  .tag svg {
    width: 22px;
    height: 22px;
  }

  .round-icon,
  .diamond-icon {
    width: 24px;
    height: 24px;
  }

  .workspace-stage {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

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

  .dashboard-card,
  .float-card {
    position: static;
    width: 100%;
    transform: none;
  }

  .dashboard-card {
    order: 1;
    height: 440px;
  }

  .dashboard-topbar {
    height: 52px;
    padding-inline: 12px;
  }

  .dashboard-status {
    gap: 7px;
  }

  .dashboard-status-title,
  .dashboard-status-count {
    font-size: 10px;
  }

  .dashboard-version {
    min-height: 27px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100% - 52px);
  }

  .dashboard-sidebar {
    display: flex;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
    background: rgba(248, 251, 255, 0.9);
    border-right: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  }

  .dashboard-nav-item {
    flex: 1 0 auto;
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 42px;
    padding: 5px 8px;
    font-size: 12px;
  }

  .dashboard-nav-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .dashboard-main {
    min-height: 0;
    padding: 12px;
  }

  .dashboard-toolbar {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }

  .dashboard-filters {
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 7px;
  }

  .dashboard-filter {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .promo-module-list {
    gap: 8px;
  }

  .promo-module-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 64px;
    padding: 9px 10px 9px 12px;
    border-radius: 11px;
  }

  .promo-module-logo {
    width: 34px;
    height: 34px;
  }

  .promo-module-copy strong {
    font-size: 13px;
  }

  .promo-chip-list {
    gap: 4px;
  }

  .promo-chip {
    min-height: 19px;
    padding-inline: 7px;
    font-size: 10px;
  }

  .promo-controls {
    gap: 5px;
  }

  .promo-controls .control-button {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .control-button img {
    width: 16px;
    height: 16px;
  }

  .promo-toggle {
    width: 42px;
    height: 24px;
  }

  .promo-toggle::after {
    width: 18px;
    height: 18px;
    top: 3px;
    left: 3px;
  }

  .promo-toggle.on::after {
    left: 21px;
  }

  .float-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    min-height: 88px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 16px;
  }

  .float-card div > span {
    font-size: 14px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

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

  .card-google {
    order: 0;
  }

  .card-search {
    order: 2;
  }

  .card-popup {
    order: 3;
  }

  .card-gtm {
    order: 4;
  }

  .card-placement {
    order: 5;
  }

  .card-ads {
    order: 6;
  }

  .benefits {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .second-screen {
    align-content: start;
    gap: 22px;
    min-height: 100svh;
    padding: 54px 16px;
  }

  .workflow-grid,
  .platform-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-screen {
    gap: 24px;
    padding: 56px 16px;
  }

  .second-screen-copy h2 {
    font-size: 30px;
  }

  .section-copy h2 {
    font-size: 30px;
  }

  .second-screen-copy p,
  .section-copy p {
    font-size: 15px;
  }

  .workflow-panel,
  .platform-card,
  .story-journey,
  .story-note,
  .feedback-grid article,
  .final-cta {
    padding: 18px;
    border-radius: 14px;
  }

  .workflow-panel h3 {
    font-size: 22px;
  }

  .story-layout {
    gap: 12px;
  }

  .story-journey {
    gap: 12px;
  }

  .story-note p {
    font-size: 15px;
  }

  .story-timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .story-timeline li > span {
    width: 40px;
    height: 40px;
  }

  .final-cta {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .final-cta img {
    width: 44px;
    height: 44px;
  }

  .benefit {
    min-height: 58px;
    padding: 0;
    font-size: 16px;
  }

  .benefit + .benefit,
  .benefit:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .benefit-icon {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tag,
  .module-chip {
    animation: none;
  }

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