:root {
  color-scheme: light;
  --ink: #15212b;
  --soft-ink: rgba(21, 33, 43, 0.82);
  --muted: #61717d;
  --line: rgba(182, 205, 224, 0.58);
  --white: #ffffff;
  --blue: #5f82ff;
  --blue-soft: rgba(95, 130, 255, 0.14);
  --orange: #ff8a00;
  --orange-soft: rgba(255, 138, 0, 0.14);
  --green: #18a90e;
  --green-soft: rgba(24, 169, 14, 0.13);
  --rose: #f04d66;
  --rose-soft: rgba(240, 77, 102, 0.13);
  --shadow: 0 30px 80px rgba(57, 86, 115, 0.14);
  --font-sans: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --landing-bg-base: #edf5ff;
  --landing-bg-dot: rgba(49, 86, 128, 0.3);
  --landing-bg-dot-opacity: 0.62;
  --landing-bg-glow-one: rgba(97, 151, 255, 0.3);
  --landing-bg-glow-two: rgba(151, 125, 255, 0.2);
  --landing-bg-glow-three: rgba(255, 255, 255, 0.86);
  --hero-word-ghost-color: rgba(21, 33, 43, 0.18);
  --hero-word-ghost-shadow: rgba(21, 33, 43, 0);
  --theme-toggle-surface: rgba(255, 255, 255, 0.42);
  --theme-toggle-surface-hover: rgba(255, 255, 255, 0.74);
  --theme-toggle-ring: rgba(182, 205, 224, 0.52);
  --section-dot-grid: radial-gradient(circle, var(--landing-bg-dot) 1px, transparent 1.4px);
  --section-background:
    var(--section-dot-grid),
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(235, 244, 255, 0.9));
  --section-background-position: 0 0, 0 0;
  --section-background-size: 24px 24px, auto;
}

@property --header-glow-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 52%;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  position: relative;
  margin: 0;
  isolation: isolate;
  color: var(--ink);
  font-family: var(--font-sans);
  background: var(--landing-bg-base);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body::before {
  inset: -22%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 16%, var(--landing-bg-glow-three) 0 15%, transparent 35%),
    radial-gradient(circle at 82% 18%, var(--landing-bg-glow-one) 0 20%, transparent 43%),
    radial-gradient(circle at 48% 74%, var(--landing-bg-glow-two) 0 24%, transparent 52%),
    linear-gradient(180deg, var(--landing-bg-base) 0%, color-mix(in srgb, var(--landing-bg-base) 82%, #ffffff) 100%);
  transform: translate3d(-1.4%, -1%, 0) scale(1.02);
  animation: landingBackgroundDrift 48s ease-in-out infinite alternate;
}

body::after {
  inset: -32px;
  z-index: 0;
  opacity: var(--landing-bg-dot-opacity);
  background-image: radial-gradient(circle, var(--landing-bg-dot) 1px, transparent 1.4px);
  background-size: 24px 24px;
  transform: translate3d(0, 0, 0);
  animation: landingDotDrift 78s linear infinite;
}

body > * {
  position: relative;
  z-index: 1;
}

body.is-eu-modal-open {
  overflow: hidden;
}

body.is-mobile-menu-open {
  overflow: hidden;
}

main > section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

main > section:not(.hero) {
  color: var(--soft-ink);
}

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

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

.section-dots {
  position: fixed;
  top: 50%;
  left: clamp(18px, 2.3vw, 34px);
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.section-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #a9dfff;
  box-shadow: 0 0 0 1px rgba(83, 176, 235, 0.2);
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.section-dot::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.section-dot:hover,
.section-dot:focus-visible {
  transform: scale(1.16);
}

.section-dot:focus-visible {
  outline: 2px solid rgba(18, 167, 238, 0.34);
  outline-offset: 6px;
}

.section-dot.is-active {
  background: #12a7ee;
  box-shadow: 0 0 0 2px rgba(18, 167, 238, 0.18);
  transform: scale(1.22);
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  align-items: center;
  gap: 14px;
  width: min(1340px, calc(100% - 40px));
  min-height: 70px;
  padding: 10px 14px 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  backdrop-filter: blur(0);
  transform: translateX(-50%);
  overflow: visible;
  isolation: isolate;
  animation: headerGlowDrift 8s ease-in-out infinite alternate;
  transition:
    top 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    min-height 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-radius 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease,
    backdrop-filter 420ms ease;
  will-change: top, width, min-height, padding;
}

.header.is-scrolled {
  top: 0;
  width: 100%;
  min-height: 54px;
  padding: 6px 18px;
  border-color: rgba(218, 231, 242, 0.34);
  border-radius: 0 0 6px 6px;
  background:
    radial-gradient(circle at var(--header-glow-x, 52%) 115%, rgba(18, 167, 238, 0.12), transparent 22rem),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 30px rgba(61, 92, 122, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(8px);
}

.header::before,
.header::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.header::before {
  background-image:
    radial-gradient(circle at 18px 18px, rgba(147, 217, 226, 0.13) 1px, transparent 1.6px),
    linear-gradient(110deg, transparent 0 30%, rgba(18, 167, 238, 0.13) 42%, rgba(243, 154, 172, 0.11) 55%, rgba(236, 226, 118, 0.1) 62%, transparent 76% 100%);
  background-size: 28px 28px, 260% 100%;
  opacity: 0;
  animation: headerTextureSweep 9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transition: opacity 420ms ease;
}

.header.is-scrolled::before {
  opacity: 0.68;
}

.header::after {
  box-shadow:
    inset 0 -1px 0 rgba(187, 207, 224, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  opacity: 0;
  transition: opacity 420ms ease;
}

.header.is-scrolled::after {
  opacity: 1;
}

.header.is-kicking::after {
  opacity: 1;
  box-shadow:
    inset 0 -2px 0 rgba(95, 130, 255, 0.34),
    0 12px 20px rgba(95, 130, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

@keyframes headerGlowDrift {
  0% {
    --header-glow-x: 18%;
  }
  100% {
    --header-glow-x: 82%;
  }
}

@keyframes headerTextureSweep {
  0%,
  18% {
    background-position: 0 0, 110% 0;
  }
  58% {
    background-position: 0 0, 18% 0;
  }
  100% {
    background-position: 0 0, -10% 0;
  }
}

@keyframes landingBackgroundDrift {
  0% {
    transform: translate3d(-1.4%, -1%, 0) scale(1.02);
  }

  50% {
    transform: translate3d(1.2%, 1.4%, 0) scale(1.045);
  }

  100% {
    transform: translate3d(2%, -1.2%, 0) scale(1.03);
  }
}

@keyframes landingDotDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-24px, -24px, 0);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --landing-bg-base: #0b1728;
    --landing-bg-dot: rgba(126, 169, 229, 0.44);
    --landing-bg-dot-opacity: 0.72;
    --landing-bg-glow-one: rgba(65, 112, 190, 0.42);
    --landing-bg-glow-two: rgba(128, 104, 190, 0.36);
    --landing-bg-glow-three: rgba(16, 39, 69, 0.88);
  }
}

:root[data-theme="light"],
body[data-theme="light"] {
  color-scheme: light;
  --ink: #15212b;
  --soft-ink: rgba(21, 33, 43, 0.82);
  --muted: #61717d;
  --line: rgba(182, 205, 224, 0.58);
  --landing-bg-base: #edf5ff;
  --landing-bg-dot: rgba(49, 86, 128, 0.3);
  --landing-bg-dot-opacity: 0.62;
  --landing-bg-glow-one: rgba(97, 151, 255, 0.3);
  --landing-bg-glow-two: rgba(151, 125, 255, 0.2);
  --landing-bg-glow-three: rgba(255, 255, 255, 0.86);
  --hero-word-ghost-color: rgba(21, 33, 43, 0.18);
  --hero-word-ghost-shadow: rgba(21, 33, 43, 0);
  --theme-toggle-surface: rgba(255, 255, 255, 0.42);
  --theme-toggle-surface-hover: rgba(255, 255, 255, 0.74);
  --theme-toggle-ring: rgba(182, 205, 224, 0.52);
}

:root[data-theme="dark"],
body[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f6faff;
  --soft-ink: rgba(235, 243, 252, 0.84);
  --muted: rgba(202, 217, 234, 0.78);
  --line: rgba(126, 169, 229, 0.24);
  --landing-bg-base: #0b1728;
  --landing-bg-dot: rgba(126, 169, 229, 0.44);
  --landing-bg-dot-opacity: 0.72;
  --landing-bg-glow-one: rgba(65, 112, 190, 0.42);
  --landing-bg-glow-two: rgba(128, 104, 190, 0.36);
  --landing-bg-glow-three: rgba(16, 39, 69, 0.88);
  --hero-word-ghost-color: rgba(238, 246, 255, 0.46);
  --hero-word-ghost-shadow: rgba(5, 12, 24, 0.18);
  --theme-toggle-surface: rgba(11, 23, 40, 0.6);
  --theme-toggle-surface-hover: rgba(23, 42, 69, 0.78);
  --theme-toggle-ring: rgba(126, 169, 229, 0.28);
}

.brand,
.nav,
.mobile-menu-trigger,
.theme-toggle,
.header-language-switcher,
.header-language-trigger,
.eu-funding-badge,
.login-link {
  display: flex;
  align-items: center;
}

.brand {
  grid-column: 1;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    gap 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    font-size 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.brand img {
  width: 42px;
  height: 42px;
  transition:
    width 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    height 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 220ms ease;
  transform: rotate(var(--brand-logo-rotation, 0rad));
  transform-origin: center;
  will-change: transform;
}

.header.is-scrolled .brand {
  gap: 10px;
  font-size: 0.94rem;
}

.header.is-scrolled .brand img {
  width: 34px;
  height: 34px;
}

.theme-toggle {
  grid-column: 3;
  justify-self: end;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--theme-toggle-ring);
  border-radius: 50%;
  background: var(--theme-toggle-surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(61, 92, 122, 0.05);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--theme-toggle-surface-hover);
  border-color: color-mix(in srgb, var(--theme-toggle-ring), var(--blue) 42%);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(18, 167, 238, 0.28);
  outline-offset: 4px;
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.theme-toggle-icon svg {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-sun {
  opacity: 0;
  transform: rotate(-30deg) scale(0.72);
}

.theme-toggle-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

:root[data-theme="dark"] .theme-toggle-sun,
body[data-theme="dark"] .theme-toggle-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

:root[data-theme="dark"] .theme-toggle-moon,
body[data-theme="dark"] .theme-toggle-moon {
  opacity: 0;
  transform: rotate(30deg) scale(0.72);
}

:root[data-theme="dark"] .header.is-scrolled,
body[data-theme="dark"] .header.is-scrolled {
  background:
    radial-gradient(circle at var(--header-glow-x, 52%) 115%, rgba(95, 130, 255, 0.24), transparent 22rem),
    rgba(9, 19, 34, 0.46);
  border-color: rgba(126, 169, 229, 0.16);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .pricing-card,
:root[data-theme="dark"] .review-quote,
:root[data-theme="dark"] .preview-window,
:root[data-theme="dark"] .chat-input,
:root[data-theme="dark"] .conversation-demo,
:root[data-theme="dark"] .prompt-builder,
:root[data-theme="dark"] .pricing-toggle,
:root[data-theme="dark"] .login-modal-panel,
:root[data-theme="dark"] .eu-modal-panel,
:root[data-theme="dark"] .mobile-menu-panel,
:root[data-theme="dark"] .header-language-menu,
body[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .review-quote,
body[data-theme="dark"] .preview-window,
body[data-theme="dark"] .chat-input,
body[data-theme="dark"] .conversation-demo,
body[data-theme="dark"] .prompt-builder,
body[data-theme="dark"] .pricing-toggle,
body[data-theme="dark"] .login-modal-panel,
body[data-theme="dark"] .eu-modal-panel,
body[data-theme="dark"] .mobile-menu-panel,
body[data-theme="dark"] .header-language-menu {
  --ink: #15212b;
  --soft-ink: rgba(21, 33, 43, 0.82);
  --muted: #61717d;
  --line: rgba(182, 205, 224, 0.58);
  color: var(--ink);
}

.nav {
  position: absolute;
  top: 50%;
  left: 50%;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.94rem;
  transform: translate(-50%, -50%);
}

.nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    padding 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.header.is-scrolled .nav a {
  padding: 7px 11px;
}

.nav a:hover {
  background: rgba(229, 246, 255, 0.9);
  color: var(--blue);
}

.nav a.is-active {
  background: rgba(18, 167, 238, 0.08);
  color: var(--blue);
}

.mobile-menu-trigger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  place-items: stretch;
  height: 50svh;
  background:
    radial-gradient(circle at 50% 16%, rgba(169, 223, 255, 0.34), transparent 18rem),
    rgba(248, 251, 253, 0.94);
  box-shadow: 0 28px 70px rgba(57, 86, 115, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-105%);
  transition:
    opacity 220ms ease,
    transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

.mobile-menu-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  max-height: 100%;
  padding: 22px 24px 28px;
  background: var(--section-background);
  background-size: var(--section-background-size);
  transform: none;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-top img {
  width: 34px;
  height: 34px;
}

.mobile-menu-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 1.72rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(57, 86, 115, 0.08);
}

.mobile-menu-eu {
  display: none;
}

  .mobile-menu-nav {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 7px;
  }

.mobile-menu-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  font-size: clamp(1.38rem, 7.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) {
  transition-delay: 105ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(5) {
  transition-delay: 140ms;
}

.header-language-switcher {
  --header-language-width: 104px;
  --header-language-radius: 14px;
  position: relative;
  grid-column: 4;
  justify-self: end;
  width: var(--header-language-width);
  z-index: 4;
}

.header-language-trigger {
  box-sizing: border-box;
  justify-content: center;
  gap: 2px;
  width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--header-language-radius);
  background: rgba(255, 255, 255, 0.3);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: inherit;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-language-trigger:hover,
.header-language-trigger:focus-visible,
.header-language-switcher.is-open .header-language-trigger {
  border-color: rgba(18, 167, 238, 0.24);
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  box-shadow: 0 10px 26px rgba(61, 92, 122, 0.06);
}

.header-language-trigger:focus-visible {
  outline: 2px solid rgba(18, 167, 238, 0.28);
  outline-offset: 4px;
}

.language-flag {
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.header-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-sizing: border-box;
  display: grid;
  gap: 4px;
  width: 100%;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(185, 205, 222, 0.54);
  border-radius: var(--header-language-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(61, 92, 122, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.header-language-option {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 2px;
  width: 100%;
  min-height: 32px;
  padding: 4px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: inherit;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-language-code,
.header-language-option > span:first-child {
  flex: 0 0 30px;
  text-align: left;
}

.header-language-option:hover,
.header-language-option:focus-visible,
.header-language-option.is-active {
  background: rgba(18, 167, 238, 0.1);
  color: #12a7ee;
}

.header-language-option:focus-visible {
  outline: 2px solid rgba(18, 167, 238, 0.24);
  outline-offset: 2px;
}

.eu-funding-badge {
  grid-column: 5;
  justify-self: end;
  justify-content: center;
  gap: 8px;
  min-width: 165px;
  padding: 5px 6px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  text-align: left;
  transition:
    min-width 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.eu-funding-badge:hover {
  border-color: rgba(218, 231, 242, 0.72);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(61, 92, 122, 0.05);
}

.eu-funding-badge img {
  width: 34px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
}

.eu-funding-badge span {
  display: grid;
  gap: 2px;
}

.eu-funding-badge strong,
.eu-funding-badge em {
  display: block;
  white-space: nowrap;
  font-style: normal;
  letter-spacing: 0;
}

.eu-funding-badge strong {
  color: #111820;
  font-size: 0.656rem;
  font-weight: 500;
}

.eu-funding-badge em {
  color: #6b737c;
  font-size: 0.656rem;
  font-weight: 400;
}

:root[data-theme="dark"] .eu-funding-badge strong,
body[data-theme="dark"] .eu-funding-badge strong {
  color: rgba(246, 250, 255, 0.94);
}

:root[data-theme="dark"] .eu-funding-badge em,
body[data-theme="dark"] .eu-funding-badge em {
  color: rgba(202, 217, 234, 0.78);
}

.header.is-scrolled .eu-funding-badge {
  min-width: 157px;
  padding: 3px 6px;
}

.header.is-scrolled .eu-funding-badge img {
  width: 31px;
  height: 20px;
}

.login-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  grid-column: 6;
  justify-self: end;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
  box-shadow: none;
  font-weight: 500;
  font-size: 0.94rem;
  transition:
    min-height 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.login-link:hover {
  border-color: transparent;
  background: transparent;
  color: var(--blue);
}

.login-avatar {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f2c6a6 0 18%, transparent 19%),
    radial-gradient(circle at 50% 100%, #12a7ee 0 34%, transparent 35%),
    linear-gradient(145deg, #e0f7ff, #b8ecff);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.92),
    0 5px 14px rgba(18, 167, 238, 0.16);
}

.header.is-scrolled .login-link {
  min-height: 38px;
  padding: 0 4px;
}

.header.is-scrolled .login-avatar {
  width: 28px;
  height: 28px;
}

.mobile-login-link,
.footer-login-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.mobile-login-link {
  width: 100%;
  padding: 0;
}

.footer-login-link {
  padding: 0;
  color: #6b737c;
}

.footer-login-link:hover {
  color: var(--blue);
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(18px);
}

.login-modal-panel {
  position: relative;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(41, 72, 104, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 167, 238, 0.14), transparent 15rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 80px rgba(36, 62, 89, 0.18);
  outline: none;
}

.login-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(41, 72, 104, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #5f6872;
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.login-modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 800;
}

.login-modal-brand img {
  width: 38px;
  height: 38px;
}

.login-modal-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.login-modal-panel p {
  margin: 0;
  color: #69727d;
  font-size: 1rem;
}

.login-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.login-modal-form label {
  display: grid;
  gap: 7px;
  color: #4d5661;
  font-size: 0.86rem;
  font-weight: 700;
}

.login-modal-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(41, 72, 104, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 0 15px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.login-modal-form input:focus {
  border-color: rgba(18, 167, 238, 0.58);
  box-shadow: 0 0 0 4px rgba(18, 167, 238, 0.12);
}

.login-modal-error {
  min-height: 20px;
  color: #d13d4d !important;
  font-size: 0.88rem !important;
  font-weight: 700;
}

.login-modal-submit {
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #12a7ee, #408cf5);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(18, 167, 238, 0.25);
}

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

.eu-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.eu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.eu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 30, 0.22);
  backdrop-filter: blur(8px);
}

.eu-modal-panel {
  position: relative;
  width: min(520px, calc(100vw - 34px));
  max-height: calc(100svh - 34px);
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(216, 224, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  color: #0b0c0f;
  box-shadow: 0 34px 120px rgba(15, 23, 35, 0.2);
  transform: translateY(10px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

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

.eu-modal-panel:focus {
  outline: none;
}

.eu-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #505050;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.62rem;
  font-weight: 300;
  line-height: 1;
}

.eu-modal-close:hover {
  color: #111111;
}

.eu-modal-panel h2 {
  margin: 0;
  max-width: calc(100% - 54px);
  color: #050607;
  font-size: clamp(1.58rem, 2.45vw, 1.86rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.eu-modal-logos {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(142px, 0.9fr) minmax(188px, 1.08fr);
  gap: 22px;
  align-items: center;
  margin-top: 20px;
}

.eu-modal-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.eu-modal-logo-block img {
  flex: 0 0 auto;
  object-fit: contain;
}

.eu-modal-logo-funds img {
  width: 31px;
  height: 42px;
}

.eu-modal-logo-poland img {
  width: 46px;
  height: 29px;
  border: 1px solid rgba(186, 194, 202, 0.7);
  border-radius: 2px;
  object-fit: cover;
}

.eu-modal-logo-eu img {
  width: 48px;
  height: 32px;
  border-radius: 5px;
  object-fit: cover;
}

.eu-modal-logo-block p {
  margin: 0;
  min-width: 0;
  color: #7b7b84;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.15;
}

.eu-modal-logo-block strong,
.eu-modal-logo-block span {
  display: block;
  letter-spacing: 0;
}

.eu-modal-logo-block strong {
  color: #0a0b0e;
  font-weight: 600;
}

.eu-modal-copy {
  margin-top: 21px;
  color: #424242;
  font-size: clamp(0.86rem, 1.35vw, 0.98rem);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0;
}

.eu-modal-copy p {
  margin: 0 0 12px;
}

.eu-modal-copy p:last-child {
  margin-bottom: 0;
}

.eu-modal-copy .eu-modal-strong {
  color: #050607;
  font-weight: 700;
  line-height: 1.45;
}

.eu-modal-tags {
  color: #2f80ff;
  font-size: clamp(0.84rem, 1.25vw, 0.98rem);
  line-height: 1.35;
}

.eu-modal-ok {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: 15px;
  border: 0;
  border-radius: 13px;
  background: #17181d;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
}

.eu-modal-ok:hover {
  background: #0f1014;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 90svh;
  padding: 162px max(24px, calc((100vw - 1280px) / 2)) 54px;
  overflow: hidden;
  background: transparent;
}

.ambient {
  display: none;
}

.ribbon {
  position: absolute;
  top: -22%;
  width: min(17vw, 240px);
  min-width: 150px;
  height: 154%;
  opacity: 0.12;
  transform: rotate(13deg) skewY(-8deg);
}

.ribbon-one {
  right: 38%;
  background: #c9a8d4;
}

.ribbon-two {
  right: 25%;
  background: #f39aac;
}

.ribbon-three {
  right: 12%;
  background: #ffc1a8;
}

.ribbon-four {
  right: -1%;
  background: #93d9e2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: #12a7ee;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  color: var(--hero-word-ghost-color);
  font-family: var(--font-sans);
  font-size: var(--hero-title-size, clamp(2.1rem, 2.75vw, 4rem));
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  overflow: visible;
}

.phrase-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  column-gap: 0.22em;
  row-gap: 0;
  min-height: 1.1em;
  white-space: nowrap;
}

.phrase-line {
  display: inline-flex;
  justify-content: center;
  column-gap: 0.22em;
  white-space: nowrap;
}

.jump-word {
  position: relative;
  display: inline-block;
  padding: 0 0.045em 0.06em;
  border-radius: 0.14em;
  transition:
    color 420ms ease,
    filter 180ms ease,
    transform 210ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
}

.jump-word[data-tone="build"] {
  --word-active-color: var(--blue);
  --word-active-shadow: rgba(21, 33, 43, 0.07);
}

.jump-word[data-tone="advertise"] {
  --word-active-color: var(--orange);
  --word-active-shadow: rgba(21, 33, 43, 0.07);
}

.jump-word[data-tone="customers"] {
  --word-active-color: var(--green);
  --word-active-shadow: rgba(21, 33, 43, 0.07);
}

.jump-word[data-tone="improve"] {
  --word-active-color: var(--rose);
  --word-active-shadow: rgba(21, 33, 43, 0.07);
}

.jump-word::after {
  content: none;
}

.jump-word.is-lit {
  transform: none;
}

.jump-word.is-pressing {
  filter:
    drop-shadow(0 0.06em 0.04em rgba(21, 33, 43, 0.05))
    drop-shadow(0 0.12em 0.16em var(--word-active-shadow));
  transform: translateY(0.04em) scale(1.035, 0.965);
  transition-duration: 110ms;
}

.jump-word.is-lit {
  color: var(--word-active-color);
  text-shadow: 0 0.07em 0.18em var(--word-active-shadow);
}

.jump-word.is-fading-out {
  animation: wordFadeToGhost 1500ms ease-out forwards;
  color: var(--word-active-color);
  text-shadow: 0 0.07em 0.18em var(--word-active-shadow);
}

@keyframes wordFadeToGhost {
  0% {
    color: var(--word-active-color);
    text-shadow: 0 0.07em 0.18em var(--word-active-shadow);
  }
  100% {
    color: var(--hero-word-ghost-color);
    text-shadow: 0 0.06em 0.14em var(--hero-word-ghost-shadow);
  }
}

.jump-ball {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  width: clamp(17px, 0.26em, 30px);
  height: clamp(17px, 0.26em, 30px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform:
    translate3d(var(--ball-x, 0), var(--ball-y, 0), 0)
    translate(-50%, -50%)
    rotate(var(--ball-rotation, 0rad))
    scale(var(--ball-scale, 1));
  transform-origin: center center;
  will-change: transform, opacity;
}

.jump-ball::before {
  position: absolute;
  inset: 0;
  background: var(--ball-color, #5f82ff);
  content: "";
  mask: url("./articode-logo.svg") center / contain no-repeat;
  -webkit-mask: url("./articode-logo.svg") center / contain no-repeat;
  transition: background 180ms ease;
}

.jump-ball img {
  display: none;
}

.hero-proof {
  display: inline-block;
  margin: 18px auto 0;
  padding: 0.16em 0.34em 0.22em;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--hero-title-size, clamp(2.1rem, 2.75vw, 4rem));
  font-style: normal;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-proof span {
  display: inline;
}

.hero-copy {
  max-width: 720px;
  margin: clamp(18px, 2.6vw, 30px) auto 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.62;
}

.hero-socials {
  position: absolute;
  bottom: clamp(34px, 5svh, 56px);
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  transform: translateX(-50%);
}

.hero-social-link {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  opacity: 0.42;
  filter: grayscale(1) saturate(0) contrast(0.58);
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-social-link:hover,
.hero-social-link:focus-visible {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

.hero-social-link:focus-visible {
  outline: 2px solid rgba(18, 167, 238, 0.32);
  outline-offset: 4px;
}

.hero-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-social-twitter img {
  width: 24px;
  height: 21px;
}

.hero-social-instagram img,
.hero-social-tiktok img {
  border-radius: 6px;
}

.hero-social-tiktok img {
  border-radius: 50%;
}

.flow-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 118px max(24px, calc((100vw - 1280px) / 2));
  scroll-margin-top: 0;
}

.flow-section::before {
  content: none;
}

.flow-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: min(1280px, 100%);
  transform: translateY(20px);
  margin: clamp(64px, 7svh, 92px) auto 0;
}

.flow-heading {
  position: static;
  align-self: center;
  min-height: 0;
}

.flow-kicker {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.flow-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--soft-ink);
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.55vw, 3.72rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.flow-heading h2 > span {
  display: block;
}

.flow-heading-combined span {
  display: inline;
}

.flow-description {
  max-width: 720px;
  margin: clamp(18px, 2.6vw, 30px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.62;
}

.flow-description-mobile {
  display: none;
}

.flow-visual {
  --flow-visual-gap: clamp(22px, 2.4vw, 36px);
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  align-self: center;
  min-width: 0;
}

.principle-section {
  --principle-top-offset: clamp(34px, 5svh, 56px);
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: var(--principle-top-offset) max(24px, calc((100vw - 1280px) / 2)) clamp(38px, 6svh, 62px);
  background: transparent;
}

.principle-copy {
  width: 100%;
  max-width: min(1120px, calc(100vw - 28px));
  text-align: center;
}

.principle-title {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1.45rem, 3.55vw, 3.72rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.principle-title > span {
  display: block;
  white-space: nowrap;
}

.principle-line {
  color: var(--soft-ink);
}

.principle-jump-word {
  display: inline-block;
  padding: 0 0.035em 0.04em;
  border-radius: 0.14em;
  transition:
    color 240ms ease,
    filter 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.principle-jump-word.is-lit {
  color: var(--principle-active-color, var(--blue));
  text-shadow: 0 0.07em 0.18em var(--principle-active-shadow, rgba(95, 130, 255, 0.18));
}

.principle-jump-word.is-pressing {
  filter: drop-shadow(0 0.1em 0.16em var(--principle-active-shadow, rgba(95, 130, 255, 0.2)));
  transform: translateY(0.04em) scale(1.035, 0.965);
}

.principle-description {
  max-width: min(1120px, 100%);
  margin: clamp(18px, 2.6vw, 30px) auto 0;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.24vw, 1.024rem);
  line-height: 1.62;
}

.principle-description > span {
  display: block;
  white-space: nowrap;
}

.prompt-title {
  display: block;
  width: min(760px, 100%);
  margin: clamp(24px, 2.8vw, 38px) auto 12px;
  color: var(--muted);
  font-size: clamp(1.26rem, 1.85vw, 1.75rem);
  line-height: 1.72;
  text-align: center;
}

.prompt-builder {
  position: relative;
  display: grid;
  width: min(760px, 100%);
  min-height: clamp(82px, 8.6vw, 114px);
  margin: 0 auto;
  padding: clamp(14px, 1.6vw, 22px) clamp(64px, 5.8vw, 88px) clamp(14px, 1.6vw, 22px) clamp(16px, 2vw, 27px);
  border: 1px solid rgba(192, 213, 232, 0.84);
  border-radius: clamp(14px, 1.15vw, 18px);
  background: rgba(246, 250, 254, 0.9);
  box-shadow: none;
  cursor: text;
  overflow: hidden;
}

.prompt-builder::before {
  content: none;
}

.prompt-builder textarea {
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  right: clamp(64px, 5.8vw, 88px);
  left: clamp(16px, 2vw, 27px);
  z-index: 2;
  width: auto;
  min-height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(0.88rem, 1.08vw, 1.08rem);
  line-height: 1.22;
  opacity: 1;
}

.prompt-typing-demo {
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  right: clamp(64px, 5.8vw, 88px);
  left: clamp(16px, 2vw, 27px);
  z-index: 1;
  display: block;
  color: rgba(82, 101, 121, 0.6);
  font-size: clamp(0.88rem, 1.08vw, 1.08rem);
  font-weight: 460;
  line-height: 1.22;
  pointer-events: none;
  text-align: left;
  transition: opacity 160ms ease;
  white-space: nowrap;
}

.prompt-typing-demo::after {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 3px;
  background: color-mix(in srgb, var(--blue), #3a5cff 18%);
  animation: caretBlink 950ms steps(1, end) infinite;
  content: "";
  vertical-align: -0.15em;
}

.prompt-builder.has-user-text .prompt-typing-demo {
  opacity: 0;
}

.prompt-builder.is-ball-target {
  border-color: rgba(95, 130, 255, 0.56);
  box-shadow: none;
}

.prompt-send {
  position: absolute;
  right: clamp(13px, 1.4vw, 18px);
  bottom: clamp(12px, 1.25vw, 16px);
  z-index: 3;
  border: 0;
  display: inline-grid;
  width: clamp(30px, 2.3vw, 38px);
  height: clamp(30px, 2.3vw, 38px);
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.prompt-send::before {
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--blue), #5d3cf2 14%);
  content: "";
  -webkit-mask: url("./assets/send-icon.png") center / contain no-repeat;
  mask: url("./assets/send-icon.png") center / contain no-repeat;
}

.prompt-send:hover {
  background: transparent;
  box-shadow: none;
  opacity: 0.86;
  transform: translateY(-1px);
}

.prompt-send:active {
  transform: translateY(0) scale(0.96);
}

.prompt-send:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--blue), white 20%);
  outline-offset: 4px;
}

.pricing-section {
  display: grid;
  place-items: center;
  min-height: 100svh;
  scroll-margin-top: 0;
  padding: clamp(82px, 8svh, 104px) max(24px, calc((100vw - 1280px) / 2)) clamp(44px, 5svh, 64px);
  background: transparent;
}

.pricing-inner {
  width: min(986px, 100%);
  margin: 0 auto;
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  align-items: end;
  width: min(1280px, calc(100vw - 48px));
  margin-bottom: clamp(14px, 1.8vw, 22px);
  margin-left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.pricing-heading h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1.45rem, 3.55vw, 3.72rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.pricing-heading h2 > span {
  display: block;
  white-space: nowrap;
}

.pricing-heading-line {
  display: inline-block;
  white-space: nowrap;
}

.pricing-trial-note {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 0;
  background:
    linear-gradient(90deg, var(--ink) 0 22%, var(--blue) 30%, var(--green) 48%, var(--orange) 66%, var(--rose) 82%, var(--ink) 100%);
  background-size: 260% 100%;
  color: transparent;
  font-size: clamp(0.78rem, 0.88vw, 0.94rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  animation: pricingTrialHighlight 4.8s ease-in-out infinite;
}

.pricing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(14px, 1.5vw, 18px);
  padding: 3px;
  border: 1px solid rgba(185, 205, 222, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.pricing-toggle-option {
  min-height: 30px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-toggle-option.is-active {
  background: var(--ink);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.08fr) minmax(0, 0.95fr);
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(185, 205, 222, 0.6);
  border-radius: 8px;
  background: rgba(185, 205, 222, 0.6);
}

.pricing-card {
  display: grid;
  grid-template-rows: minmax(clamp(96px, 6.4vw, 108px), auto) minmax(clamp(116px, 8.5vw, 150px), auto) 1fr auto;
  gap: 0;
  min-height: 0;
  padding: clamp(18px, 1.75vw, 23px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.pricing-card-featured {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  transform: none;
}

.pricing-card h3 {
  margin: 0;
  color: var(--pricing-name-color, var(--soft-ink));
  font-size: clamp(1.22rem, 1.48vw, 1.58rem);
  font-weight: 650;
  line-height: 1;
  text-align: center;
  transition:
    color 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.pricing-start-word {
  display: inline-block;
  transition:
    color 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.pricing-card h3.is-pricing-active,
.pricing-start-word.is-pricing-active {
  color: var(--pricing-name-color, var(--pricing-active-color, var(--blue)));
  text-shadow: 0 0.08em 0.24em var(--pricing-active-shadow, rgba(95, 130, 255, 0.18));
  transform: translateY(0.03em) scale(1.02);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin: 0 0 14px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-audience {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
  text-align: center;
}

.pricing-rate {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: clamp(116px, 8.5vw, 150px);
}

.pricing-price {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1.42rem, 1.85vw, 1.96rem);
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

.pricing-price span {
  display: block;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.pricing-price strong {
  font: inherit;
}

.pricing-billing {
  margin: 0;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.pricing-card ul {
  display: grid;
  align-content: start;
  gap: 5px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(185, 205, 222, 0.5);
  color: color-mix(in srgb, var(--soft-ink), var(--muted) 34%);
  font-size: 0.82rem;
  line-height: 1.32;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue);
  content: "✓";
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1;
  transform: none;
}

.pricing-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(95, 130, 255, 0.32);
  border-radius: 7px;
  background: transparent;
  color: color-mix(in srgb, var(--blue), var(--ink) 18%);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.pricing-card-featured a {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
}

.pricing-card a:hover {
  border-color: var(--blue);
  background: rgba(240, 246, 255, 0.92);
  transform: translateY(-2px);
}

.pricing-card-featured a:hover {
  background: color-mix(in srgb, var(--blue), #1d2d4a 12%);
}

:root[data-theme="dark"] .pricing-heading h2,
body[data-theme="dark"] .pricing-heading h2 {
  color: rgba(235, 244, 255, 0.9);
  text-shadow: 0 18px 54px rgba(2, 8, 20, 0.28);
}

:root[data-theme="dark"] .pricing-heading-line,
body[data-theme="dark"] .pricing-heading-line {
  color: rgba(238, 246, 255, 0.94);
}

:root[data-theme="dark"] .pricing-toggle,
body[data-theme="dark"] .pricing-toggle {
  --ink: #f6faff;
  --soft-ink: rgba(235, 243, 252, 0.84);
  --muted: rgba(205, 220, 242, 0.66);
  --line: rgba(178, 204, 255, 0.22);
  border-color: rgba(178, 204, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(11, 23, 40, 0.72);
  box-shadow:
    0 18px 42px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

:root[data-theme="dark"] .pricing-toggle-option,
body[data-theme="dark"] .pricing-toggle-option {
  color: rgba(219, 230, 248, 0.62);
}

:root[data-theme="dark"] .pricing-toggle-option.is-active,
body[data-theme="dark"] .pricing-toggle-option.is-active {
  background: rgba(241, 246, 255, 0.92);
  color: #0b1728;
  box-shadow:
    0 8px 20px rgba(2, 8, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

:root[data-theme="dark"] .pricing-grid,
body[data-theme="dark"] .pricing-grid {
  gap: clamp(10px, 1.15vw, 14px);
  overflow: visible;
  border: 0;
  border-radius: 22px;
  background: transparent;
}

:root[data-theme="dark"] .pricing-card,
body[data-theme="dark"] .pricing-card {
  --ink: #f7fbff;
  --soft-ink: rgba(232, 241, 255, 0.88);
  --muted: rgba(204, 219, 239, 0.7);
  --line: rgba(178, 204, 255, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178, 204, 255, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 148, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.052)),
    rgba(11, 23, 40, 0.72);
  color: var(--ink);
  box-shadow:
    0 28px 70px rgba(2, 8, 20, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .pricing-card::before,
body[data-theme="dark"] .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 72%, rgba(126, 169, 229, 0.08));
  opacity: 0.65;
}

:root[data-theme="dark"] .pricing-card > *,
body[data-theme="dark"] .pricing-card > * {
  position: relative;
  z-index: 1;
}

:root[data-theme="dark"] .pricing-card-featured,
body[data-theme="dark"] .pricing-card-featured {
  border-color: rgba(132, 164, 255, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(95, 130, 255, 0.28), transparent 39%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.068)),
    rgba(13, 27, 50, 0.86);
  box-shadow:
    0 34px 88px rgba(2, 8, 20, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.055),
    0 0 46px rgba(95, 130, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

:root[data-theme="dark"] .pricing-card h3,
body[data-theme="dark"] .pricing-card h3 {
  color: var(--pricing-name-color, rgba(246, 250, 255, 0.94));
  text-shadow: 0 10px 28px rgba(2, 8, 20, 0.24);
}

:root[data-theme="dark"] .pricing-trial-note,
body[data-theme="dark"] .pricing-trial-note {
  background:
    linear-gradient(90deg, rgba(238, 246, 255, 0.94) 0 18%, #85a7ff 32%, #38d47b 49%, #ff9a3d 66%, #ff6f83 82%, rgba(238, 246, 255, 0.94) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 6px 18px rgba(2, 8, 20, 0.18));
}

:root[data-theme="dark"] .pricing-audience,
body[data-theme="dark"] .pricing-audience {
  color: rgba(205, 220, 240, 0.72);
}

:root[data-theme="dark"] .pricing-price,
body[data-theme="dark"] .pricing-price {
  color: rgba(247, 251, 255, 0.94);
}

:root[data-theme="dark"] .pricing-price span,
body[data-theme="dark"] .pricing-price span {
  color: rgba(210, 224, 244, 0.64);
}

:root[data-theme="dark"] .pricing-billing,
body[data-theme="dark"] .pricing-billing {
  color: #70d369;
  text-shadow: 0 8px 22px rgba(20, 145, 65, 0.18);
}

:root[data-theme="dark"] .pricing-card ul,
body[data-theme="dark"] .pricing-card ul {
  border-top-color: rgba(178, 204, 255, 0.18);
  color: rgba(214, 226, 244, 0.78);
}

:root[data-theme="dark"] .pricing-card li::before,
body[data-theme="dark"] .pricing-card li::before {
  color: #92aeff;
  text-shadow: 0 0 18px rgba(95, 130, 255, 0.32);
}

:root[data-theme="dark"] .pricing-card a,
body[data-theme="dark"] .pricing-card a {
  border-color: rgba(153, 183, 255, 0.32);
  background: rgba(15, 31, 56, 0.48);
  color: rgba(222, 232, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(2, 8, 20, 0.16);
}

:root[data-theme="dark"] .pricing-card-featured a,
body[data-theme="dark"] .pricing-card-featured a {
  border-color: rgba(122, 155, 255, 0.98);
  background:
    linear-gradient(180deg, #6e8eff, #5878f2);
  color: #ffffff;
  box-shadow:
    0 18px 38px rgba(36, 72, 190, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .pricing-card a:hover,
body[data-theme="dark"] .pricing-card a:hover {
  border-color: rgba(178, 204, 255, 0.58);
  background: rgba(30, 50, 86, 0.72);
}

:root[data-theme="dark"] .pricing-card-featured a:hover,
body[data-theme="dark"] .pricing-card-featured a:hover {
  background:
    linear-gradient(180deg, #7d99ff, #607ef7);
}

.reviews-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(96px, 11vw, 138px) max(24px, calc((100vw - 1360px) / 2));
  overflow: hidden;
  background: transparent;
  scroll-margin-top: 0;
}

.reviews-section::before {
  content: none;
}

.reviews-section::after {
  content: none;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
}

.reviews-inner h2 {
  margin: 0 auto clamp(42px, 5vw, 68px);
  color: var(--soft-ink);
  font-size: clamp(1.45rem, 3.55vw, 3.72rem);
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 5.2vw, 72px) clamp(36px, 5.6vw, 86px);
}

.review-quote {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.review-stars {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: clamp(22px, 2.3vw, 30px);
  background:
    linear-gradient(90deg, #f5bd00 0 22%, #ffe66f 36%, #fffdf0 50%, #ffe783 64%, #f5bd00 82% 100%);
  background-size: 260% 100%;
  color: transparent;
  font-size: clamp(1.23rem, 1.55vw, 1.62rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-background-clip: text;
  background-clip: text;
  animation: pricingTrialHighlight 2.35s ease-in-out infinite;
  filter: drop-shadow(0 0.08em 0.08em rgba(190, 142, 0, 0.12));
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    text-shadow 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.review-stars::before {
  content: "";
  display: none;
}

.review-stars.is-review-touched {
  filter: saturate(1.16) brightness(1.06);
}

.review-stars.is-review-active {
  filter: saturate(1.45) brightness(1.23);
  text-shadow: 0 0.13em 0.42em var(--review-active-shadow, rgba(245, 189, 0, 0.31));
  transform: translateY(2.2px) scale(1.05, 0.95);
}

.review-quote blockquote {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.28vw, 1.25rem);
  font-style: italic;
  font-weight: 450;
  line-height: 1.62;
}

.review-quote blockquote span {
  display: block;
  white-space: nowrap;
}

.review-quote figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: clamp(12px, 1.35vw, 18px);
  text-align: right;
}

.review-quote figcaption span:last-child {
  display: grid;
  gap: 4px;
}

.review-quote.review-align-right blockquote {
  font-size: clamp(0.92rem, 1.15vw, 1.13rem);
}

.review-quote.review-align-right strong {
  font-size: clamp(0.74rem, 0.9vw, 0.85rem);
}

.review-quote.review-align-right em {
  font-size: clamp(0.63rem, 0.76vw, 0.72rem);
}

.review-quote strong {
  color: var(--soft-ink);
  font-size: clamp(0.82rem, 0.99vw, 0.94rem);
  font-weight: 700;
  line-height: 1.1;
}

.review-quote em {
  color: var(--muted);
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-style: normal;
  line-height: 1.2;
}

:root[data-theme="dark"] .reviews-section,
body[data-theme="dark"] .reviews-section {
  isolation: isolate;
}

:root[data-theme="dark"] .reviews-section::before,
body[data-theme="dark"] .reviews-section::before {
  content: "";
  position: absolute;
  inset: 8% max(20px, calc((100vw - 1380px) / 2)) 7%;
  z-index: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(95, 130, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(255, 167, 64, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  pointer-events: none;
}

:root[data-theme="dark"] .reviews-inner h2,
body[data-theme="dark"] .reviews-inner h2 {
  color: rgba(239, 246, 255, 0.94);
  text-shadow: 0 20px 64px rgba(2, 8, 20, 0.34);
}

:root[data-theme="dark"] .review-quote,
body[data-theme="dark"] .review-quote {
  position: relative;
  min-height: 220px;
  padding: clamp(22px, 2.35vw, 32px);
  border: 1px solid rgba(178, 204, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
    rgba(10, 22, 40, 0.55);
  box-shadow:
    0 24px 62px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .review-quote::before,
body[data-theme="dark"] .review-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%, transparent 70%, rgba(126, 169, 229, 0.06));
  opacity: 0.58;
  pointer-events: none;
}

:root[data-theme="dark"] .review-stars,
body[data-theme="dark"] .review-stars {
  background:
    linear-gradient(90deg, #fff2ac 0 18%, #ffe66f 34%, #ffd132 54%, #ffbd2f 72%, #fff1a3 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 8px 18px rgba(2, 8, 20, 0.3))
    drop-shadow(0 0 12px rgba(255, 209, 50, 0.18));
}

:root[data-theme="dark"] .review-quote blockquote,
body[data-theme="dark"] .review-quote blockquote {
  position: relative;
  z-index: 1;
  color: rgba(232, 241, 255, 0.86);
  font-style: normal;
  font-weight: 500;
  text-shadow: 0 10px 28px rgba(2, 8, 20, 0.22);
}

:root[data-theme="dark"] .review-quote figcaption,
body[data-theme="dark"] .review-quote figcaption {
  position: relative;
  z-index: 1;
}

:root[data-theme="dark"] .review-quote strong,
body[data-theme="dark"] .review-quote strong {
  color: rgba(247, 251, 255, 0.94);
}

:root[data-theme="dark"] .review-quote em,
body[data-theme="dark"] .review-quote em {
  color: rgba(199, 215, 238, 0.66);
}

.footer {
  padding: clamp(36px, 4.8vw, 58px) max(24px, calc((100vw - 1280px) / 2)) 20px;
  border-top: 1px solid rgba(185, 205, 222, 0.54);
  background: transparent;
  scroll-snap-align: start;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.25fr);
  gap: clamp(30px, 6vw, 84px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.footer-brand {
  grid-column: 1;
  display: grid;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--soft-ink);
  font-size: 1.06rem;
  font-weight: 650;
}

.footer-logo img {
  width: 38px;
  height: 38px;
}

.footer-brand > p {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.footer-funding {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: clamp(12px, 1.5vw, 18px);
  margin: 0;
  padding-top: 0;
}

.footer-funding-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.footer-funding-item img {
  flex: 0 0 auto;
  border-radius: 5px;
  object-fit: contain;
}

.footer-funding-funds img {
  width: 20px;
  height: 35px;
}

.footer-funding-poland img {
  width: 51px;
  height: 35px;
}

.footer-funding-eu img {
  width: 53px;
  height: 35px;
}

.footer-funding-item p {
  display: grid;
  gap: 1px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.56rem, 1vw, 0.64rem);
  line-height: 1.14;
}

.footer-funding-item strong {
  color: var(--ink);
  font-size: clamp(0.58rem, 1.03vw, 0.67rem);
  font-weight: 760;
  line-height: 1.08;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.7fr) minmax(190px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  padding-top: 13px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h2 {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-nav a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(185, 205, 222, 0.44);
  color: color-mix(in srgb, var(--muted), white 12%);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.flow-pills-panel {
  display: grid;
  gap: 6px;
}

.flow-timeline-row,
.flow-timeline-label,
.flow-timeline {
  display: none;
}

.flow-timeline-segment {
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(85, 104, 120, 0.5);
  cursor: pointer;
  text-align: left;
}

.flow-timeline-segment span {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(212, 224, 236, 0.72);
}

.flow-timeline-segment span::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--segment-color, var(--blue));
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.flow-timeline-segment.is-visited span::before {
  transform: scaleX(1);
}

.flow-timeline-segment.is-active {
  color: var(--segment-color, var(--blue));
}

.flow-timeline-segment.is-active span {
  background: color-mix(in srgb, var(--segment-color, var(--blue)), white 76%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--segment-color, var(--blue)), transparent 82%);
}

.flow-timeline-segment.is-active span::before {
  animation: timelineActiveSweep 1800ms ease-in-out infinite;
}

.flow-timeline-segment:nth-child(1) {
  --segment-color: var(--blue);
}

.flow-timeline-segment:nth-child(2) {
  --segment-color: var(--orange);
}

.flow-timeline-segment:nth-child(3) {
  --segment-color: var(--green);
}

.flow-timeline-segment:nth-child(4) {
  --segment-color: var(--rose);
}

.flow-pills {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
  min-width: 0;
}

.flow-demo-controls {
  position: absolute;
  bottom: calc(100% + 24px);
  right: 0;
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
}

.flow-control {
  display: inline-grid;
  place-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(147, 202, 255, 0.72);
  border-radius: 999px;
  background: rgba(229, 246, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(61, 135, 210, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  opacity: 0.7;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-control:hover,
.flow-control:focus-visible,
.flow-control.is-loop-target {
  border-color: rgba(95, 130, 255, 0.48);
  background: rgba(217, 240, 255, 0.96);
  box-shadow:
    0 16px 38px rgba(61, 135, 210, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  opacity: 1;
  transform: translateY(-1px);
}

.flow-control:focus-visible {
  outline: 2px solid rgba(95, 130, 255, 0.32);
  outline-offset: 5px;
}

.flow-pause-control {
  grid-template-columns: 3px 3px;
  gap: 4px;
}

.flow-pause-control span {
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: #5f82ff;
}

.flow-restart-control svg {
  width: 13px;
  height: 13px;
  overflow: visible;
}

.flow-restart-control path {
  fill: none;
  stroke: #5f82ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-restart-control.is-loop-pressed {
  transform: translateY(2px) scale(0.96);
}

.flow-pill {
  --pill-progress: 0turn;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(214, 226, 238, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 12px 30px rgba(76, 102, 128, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: rgba(21, 33, 43, 0.34);
  cursor: pointer;
  font-size: clamp(0.88rem, 1.02vw, 1.02rem);
  font-weight: 500;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.flow-pill:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--pill-color), white 22%);
  outline-offset: 7px;
}

.flow-pill::before {
  position: absolute;
  inset: -4px;
  z-index: 1;
  padding: 2.25px;
  border-radius: inherit;
  background:
    conic-gradient(
      from -90deg,
      color-mix(in srgb, var(--pill-color), transparent 12%) var(--pill-progress),
      transparent 0
    );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.flow-pill.is-flow-working::before,
.flow-pill.is-flow-done::before {
  opacity: 1;
}

.flow-pill.is-flow-done::before,
.flow-pill.is-flow-progress-full::before {
  background: color-mix(in srgb, var(--pill-color), transparent 12%);
}

.flow-pill.is-flow-visited,
.flow-pill.is-flow-active {
  border-color: color-mix(in srgb, var(--pill-color), white 70%);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 12px 30px rgba(76, 102, 128, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--pill-color);
}

.flow-pill.is-flow-active {
  box-shadow:
    0 14px 36px rgba(76, 102, 128, 0.065),
    0 0 0 4px rgba(255, 255, 255, 0.78),
    0 0 0 5px color-mix(in srgb, var(--pill-color), transparent 72%);
  transform: translateY(-1px);
}

.flow-pill.is-flow-pressing {
  box-shadow:
    0 8px 24px rgba(76, 102, 128, 0.06),
    0 0 0 4px rgba(255, 255, 255, 0.72),
    0 0 0 5px color-mix(in srgb, var(--pill-color), transparent 74%);
  transform: translateY(5px) scaleY(0.96);
}

.flow-pill-build {
  --pill-color: var(--blue);
  --pill-shadow: rgba(95, 130, 255, 0.18);
}

.flow-pill-promote {
  --pill-color: var(--orange);
  --pill-shadow: rgba(255, 138, 0, 0.16);
}

.flow-pill-analyse {
  --pill-color: var(--green);
  --pill-shadow: rgba(24, 169, 14, 0.15);
}

.flow-pill-improve {
  --pill-color: var(--rose);
  --pill-shadow: rgba(240, 77, 102, 0.16);
}

.conversation-demo {
  --conversation-height: clamp(390px, 31vw, 470px);
  --progress-space: 0px;
  --browser-bottom-space: 0px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(330px, 1.08fr);
  gap: var(--flow-visual-gap);
  align-items: end;
  min-height: var(--conversation-height);
}

.chat-console {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  height: var(--conversation-height);
  padding-bottom: var(--browser-bottom-space);
  min-width: 0;
  box-sizing: border-box;
}

.conversation-thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  height: 100%;
  min-width: 0;
  padding: 0 8px 2px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 42px, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 42px, #000 100%);
  scroll-behavior: smooth;
}

.chat-bubble,
.thinking-bubble {
  opacity: 0;
  transform: translateY(18px);
}

.chat-bubble {
  flex-shrink: 0;
  max-width: min(420px, 100%);
  margin: 0;
  padding: 8px 11px 9px;
  border-radius: 18px;
  font-size: clamp(0.66rem, 0.7vw, 0.74rem);
  line-height: 1.26;
  box-shadow: none;
}

.user-bubble {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  background: linear-gradient(180deg, #64a8ff 0%, #2579ff 100%);
  color: white;
}

.ai-bubble {
  align-self: flex-start;
  border: 1px solid rgba(214, 225, 236, 0.84);
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(62, 79, 94, 0.9);
}

.thinking-bubble {
  flex-shrink: 0;
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(214, 225, 236, 0.84);
  border-radius: 17px 17px 17px 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.thinking-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(93, 113, 130, 0.46);
  animation: thinkingDot 900ms ease-in-out infinite;
}

.thinking-bubble span:nth-child(2) {
  animation-delay: 120ms;
}

.thinking-bubble span:nth-child(3) {
  animation-delay: 240ms;
}

.conversation-thread .chat-bubble,
.conversation-thread .thinking-bubble {
  max-height: 0;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  overflow: hidden;
}

.chat-input {
  --typed-ch: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 46px;
  padding: 8px 6px 8px 0;
  border: 1px solid rgba(197, 211, 224, 0.86);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(45, 70, 95, 0.05);
  overflow: hidden;
}

.input-placeholder,
.typed-text {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin-left: 18px;
  font-size: clamp(0.76rem, 0.82vw, 0.84rem);
  line-height: 1.32;
}

.input-placeholder {
  color: rgba(82, 101, 118, 0.46);
  opacity: 1;
  transition: opacity 120ms ease;
}

.chat-input.is-typing .input-placeholder {
  opacity: 0;
}

.typed-text {
  width: auto;
  max-width: calc(100% - 12px);
  color: rgba(45, 63, 79, 0.86);
  opacity: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.typed-text.is-typing {
  opacity: 1;
}

.typing-caret {
  display: none;
}

.typed-text.is-typing::after {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 2px;
  background: rgba(37, 121, 255, 0.86);
  animation: caretBlink 950ms steps(1, end) infinite;
  content: "";
  vertical-align: -0.16em;
}

.send-button {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 38px;
  height: 38px;
  margin-right: 4px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, rgba(236, 243, 255, 0.95), rgba(211, 226, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(87, 132, 242, 0.16);
  opacity: 0.42;
  transform: scale(0.96);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.send-button.is-ready {
  opacity: 1;
  transform: scale(1);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, rgba(230, 240, 255, 0.98), rgba(197, 216, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(87, 132, 242, 0.24);
}

.send-button.is-pressing {
  transform: scale(0.9);
  box-shadow:
    inset 0 1px 3px rgba(44, 79, 148, 0.28),
    0 8px 18px rgba(87, 132, 242, 0.18);
}

.send-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  background: #4f7dff;
  content: "";
  transform: translate(-50%, -50%);
  -webkit-mask: url("./assets/send-icon.png") center / contain no-repeat;
  mask: url("./assets/send-icon.png") center / contain no-repeat;
}

.work-preview {
  position: relative;
  min-height: var(--conversation-height);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-width: 0;
}

.preview-window {
  position: relative;
  overflow: hidden;
  min-height: calc(var(--conversation-height) - var(--progress-space));
  border: 1px solid rgba(210, 224, 236, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 253, 0.78)),
    radial-gradient(circle at 22% 16%, rgba(95, 130, 255, 0.12), transparent 18rem);
  box-shadow: 0 28px 80px rgba(66, 91, 114, 0.12);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.preview-window::after {
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--blue), transparent 58%);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.preview-window.is-transfer-impact {
  border-color: rgba(95, 130, 255, 0.36);
  box-shadow:
    0 30px 82px rgba(66, 91, 114, 0.12),
    0 0 0 4px rgba(95, 130, 255, 0.055),
    inset 0 0 34px rgba(95, 130, 255, 0.075);
}

.preview-window.is-transfer-impact::after {
  animation: previewImpactGlow 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.preview-transfer-ripple {
  position: absolute;
  z-index: 15;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(95, 130, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(95, 130, 255, 0.16),
    0 0 18px rgba(95, 130, 255, 0.2);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  animation: previewTransferRipple 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preview-toolbar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(218, 230, 239, 0.74);
  background: rgba(255, 255, 255, 0.66);
}

.preview-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.preview-toolbar span:nth-child(1) {
  background: #ff5f57;
}

.preview-toolbar span:nth-child(2) {
  background: #ffbd2e;
}

.preview-toolbar span:nth-child(3) {
  background: #28c840;
}

.preview-stage {
  position: relative;
  min-height: calc(var(--conversation-height) - var(--progress-space) - 38px);
  padding: 24px 28px;
}

.site-build,
.ad-build,
.campaign-build,
.analyse-build,
.improve-build {
  position: absolute;
  inset: 24px 28px;
}

.ad-build {
  inset: 16px 28px 18px;
}

.site-build {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-build.is-exiting {
  animation: siteBuildOut 560ms cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

.ad-build.is-exiting {
  animation: siteBuildOut 520ms cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

.campaign-build.is-exiting {
  animation: siteBuildOut 520ms cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

.analyse-build.is-exiting,
.improve-build.is-exiting {
  animation: siteBuildOut 520ms cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

.preview-window.is-improve-stage .site-build,
.preview-window.is-improve-stage .ad-build,
.preview-window.is-improve-stage .campaign-build,
.preview-window.is-improve-stage .analyse-build {
  display: none !important;
}

.site-build.is-hidden-for-improve,
.ad-build.is-hidden-for-improve,
.campaign-build.is-hidden-for-improve,
.analyse-build.is-hidden-for-improve {
  display: none !important;
}

.site-build.is-hidden-for-analytics,
.ad-build.is-hidden-for-analytics,
.campaign-build.is-hidden-for-analytics {
  display: none !important;
}

.preview-stage:has(.analytics-title.is-visible) .site-build,
.preview-stage:has(.analytics-title.is-visible) .ad-build,
.preview-stage:has(.analytics-title.is-visible) .campaign-build,
.preview-stage:has(.metric-card.is-visible) .site-build,
.preview-stage:has(.metric-card.is-visible) .ad-build,
.preview-stage:has(.metric-card.is-visible) .campaign-build {
  display: none !important;
}

.preview-stage:has(.recommendations-title.is-visible) .site-build,
.preview-stage:has(.recommendations-title.is-visible) .ad-build,
.preview-stage:has(.recommendations-title.is-visible) .campaign-build,
.preview-stage:has(.recommendations-title.is-visible) .analyse-build,
.preview-stage:has(.recommendation.is-visible) .site-build,
.preview-stage:has(.recommendation.is-visible) .ad-build,
.preview-stage:has(.recommendation.is-visible) .campaign-build,
.preview-stage:has(.recommendation.is-visible) .analyse-build,
.preview-stage:has(.recommendations-apply.is-visible) .site-build,
.preview-stage:has(.recommendations-apply.is-visible) .ad-build,
.preview-stage:has(.recommendations-apply.is-visible) .campaign-build,
.preview-stage:has(.recommendations-apply.is-visible) .analyse-build {
  display: none !important;
}

.site-part,
.ad-card,
.ad-copy-line,
.ad-campaign-strip,
.campaign-scheduler,
.campaign-targeting,
.crm-list,
.crm-row,
.analytics-title,
.metric-card,
.analytics-donut,
.analytics-bars,
.analytics-map,
.chart-line,
.recommendation {
  display: block;
  color: transparent;
  text-shadow: none;
  opacity: 0.42;
  transform: translateY(0) scale(1);
}

.ad-card,
.ad-copy-line,
.ad-campaign-strip,
.campaign-scheduler,
.campaign-targeting,
.crm-list,
.crm-row,
.analytics-title,
.metric-card,
.analytics-donut,
.analytics-bars,
.analytics-map,
.chart-line,
.recommendation {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

.site-top {
  display: grid;
  grid-template-columns: auto minmax(64px, 1fr) repeat(3, minmax(34px, auto));
  gap: 6px;
  align-items: center;
  margin-bottom: 2px;
}

.site-logo-mark,
.site-logo {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(211, 221, 231, 0.58);
  white-space: nowrap;
}

.site-logo-mark {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.site-logo {
  width: 76px;
  height: 18px;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 18px;
}

.site-nav {
  overflow: hidden;
  height: 13px;
  padding: 0 6px;
  border-radius: 3px;
  background: transparent;
  font-size: 0.46rem;
  line-height: 13px;
  white-space: nowrap;
}

.site-hero-mini {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(84px, 0.8fr);
  gap: 12px;
  align-items: stretch;
}

.site-copy-mini {
  display: grid;
  align-content: center;
  gap: 8px;
}

.site-hero-picture {
  min-height: 86px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.74) 0 12px, transparent 13px),
    linear-gradient(135deg, rgba(211, 221, 231, 0.7), rgba(211, 221, 231, 0.36));
}

.site-line {
  overflow: hidden;
  min-height: 14px;
  padding: 0;
  border-radius: 0;
  background: rgba(211, 221, 231, 0.58);
  font-weight: 700;
  line-height: 1.16;
}

.site-line-hero {
  width: 100%;
  min-height: 36px;
  padding-top: 0;
  font-size: clamp(0.5rem, 0.72vw, 0.68rem);
}

.site-line-short {
  width: 90%;
  min-height: 30px;
  padding-top: 0;
  font-size: clamp(0.42rem, 0.56vw, 0.54rem);
  font-weight: 500;
}

.site-button {
  width: 80px;
  height: 22px;
  padding: 0 9px;
  border-radius: 6px;
  background: rgba(211, 221, 231, 0.58);
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}

.site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 2px;
}

.site-cards span {
  min-height: 70px;
  padding: 8px;
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(211, 221, 231, 0.58) 0 27px, transparent 27px),
    rgba(255, 255, 255, 0.74);
}

.site-cards i {
  display: block;
  height: 20px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: rgba(211, 221, 231, 0.58);
}

.site-cards strong,
.site-cards em {
  display: block;
}

.site-cards strong {
  font-size: 0.5rem;
}

.site-cards em {
  margin-top: 5px;
  font-size: 0.43rem;
  font-style: normal;
  line-height: 1.28;
}

.site-booking-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 6px;
  background: rgba(211, 221, 231, 0.38);
}

.site-booking-strip strong,
.site-booking-strip em,
.site-booking-strip b {
  display: block;
}

.site-booking-strip strong {
  font-size: 0.54rem;
}

.site-booking-strip em {
  grid-column: 1;
  font-size: 0.43rem;
  font-style: normal;
  line-height: 1.25;
}

.site-booking-strip b {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(211, 221, 231, 0.58);
  font-size: 0.44rem;
  white-space: nowrap;
}

.site-part.is-visible {
  animation: buildSitePartIn 520ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.site-logo.is-visible,
.site-logo-mark.is-visible {
  background: rgba(255, 255, 255, 0.74);
  color: rgba(22, 34, 45, 0.84);
}

.site-nav.is-visible {
  color: rgba(22, 34, 45, 0.84);
}

.site-logo-mark.is-visible {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.82) 0 3px, transparent 4px),
    var(--blue);
  box-shadow: 0 8px 18px rgba(95, 130, 255, 0.18);
}

.site-line.is-visible {
  background: transparent;
  color: rgba(22, 34, 45, 0.9);
}

.site-hero-picture.is-visible {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.9) 0 13px, transparent 14px),
    linear-gradient(145deg, rgba(95, 130, 255, 0.16), rgba(24, 169, 14, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 238, 248, 0.7));
  box-shadow: inset 0 0 0 1px rgba(211, 225, 237, 0.78);
}

.site-button.is-visible {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 32px rgba(95, 130, 255, 0.22);
}

.site-cards span.is-visible {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(42, 58, 72, 0.82);
}

.site-cards span.is-visible i {
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.78) 0 5px, transparent 6px),
    linear-gradient(135deg, rgba(95, 130, 255, 0.16), rgba(255, 138, 0, 0.1));
}

.site-booking-strip.is-visible {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(42, 58, 72, 0.82);
}

.site-booking-strip.is-visible b {
  background: var(--blue);
  color: white;
}

.site-footer-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, auto);
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding: 9px 12px;
  border-top: 1px solid rgba(211, 225, 237, 0.82);
  color: transparent;
}

.site-footer-mini strong,
.site-footer-mini span {
  display: block;
}

.site-footer-mini strong {
  font-size: 0.5rem;
}

.site-footer-mini span {
  font-size: 0.42rem;
}

.site-footer-mini.is-visible {
  color: rgba(71, 88, 104, 0.72);
}

.ad-build {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(148px, 1fr) auto;
  gap: 15px 26px;
  align-content: start;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ad-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: stretch;
  gap: 7px;
  min-height: 154px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 93, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 29%, rgba(255, 255, 255, 0.96) 0 11px, transparent 12px),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.76), transparent 38%),
    linear-gradient(155deg, rgba(255, 138, 0, 0.16), rgba(95, 130, 255, 0.14)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(255, 138, 0, 0.1);
  color: transparent;
}

.ad-copy-line {
  position: relative;
  top: 20px;
  grid-column: 1 / -1;
  display: block;
  align-self: start;
  max-width: 420px;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(42, 58, 72, 0.82);
  font-size: clamp(0.86rem, 1.06vw, 1.12rem);
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
}

.ad-copy-line::before,
.ad-copy-line::after {
  content: none;
}

.ad-card-one {
  min-height: 148px;
  align-self: center;
}

.ad-card-two {
  min-height: 184px;
}

.ad-card-three {
  min-height: 148px;
  align-self: center;
}

.ad-card::before {
  position: relative;
  display: block;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.92) 0 7px, transparent 8px),
    linear-gradient(135deg, rgba(95, 130, 255, 0.18), rgba(255, 138, 0, 0.18)),
    rgba(255, 255, 255, 0.52);
  content: "";
}

.ad-card::after {
  position: relative;
  justify-self: center;
  width: min(86px, 78%);
  height: 18px;
  border-radius: 8px;
  background: var(--orange);
  content: "";
}

.ad-card i,
.ad-card strong,
.ad-card em {
  position: relative;
  z-index: 1;
  display: block;
}

.ad-card i {
  align-self: start;
  width: fit-content;
  padding: 3px 8px 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(255, 138, 0, 0.78);
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 700;
}

.ad-card strong {
  max-width: 92%;
  color: rgba(34, 48, 61, 0.86);
  font-size: 0.53rem;
  line-height: 1.08;
  font-weight: 700;
}

.ad-card em {
  max-width: 88%;
  color: rgba(75, 91, 106, 0.76);
  font-size: 0.44rem;
  font-style: normal;
  line-height: 1.18;
}

.ad-campaign-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: auto;
  justify-items: center;
  align-content: center;
  align-items: center;
  align-self: start;
  min-height: 52px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ad-campaign-strip::before,
.ad-campaign-strip::after {
  content: none;
}

.ad-campaign-strip b {
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 14px 28px rgba(255, 138, 0, 0.16);
}

.campaign-build {
  display: grid;
  gap: 8px;
  align-content: start;
  pointer-events: none;
}

.campaign-scheduler,
.campaign-targeting,
.crm-list {
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.campaign-scheduler {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
}

.campaign-scheduler strong {
  color: rgba(42, 58, 72, 0.78);
  font-size: 0.48rem;
}

.campaign-scheduler span {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(215, 226, 237, 0.76);
}

.campaign-scheduler i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 0.74, 0.2, 1);
}

.campaign-scheduler.is-scheduling i {
  animation: campaignScheduleFill 2200ms cubic-bezier(0.22, 0.74, 0.2, 1) forwards;
}

.campaign-targeting {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 8px;
  padding: 8px;
}

.campaign-map {
  position: relative;
  min-height: 88px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(35deg, transparent 45%, rgba(24, 169, 14, 0.16) 46% 53%, transparent 54%),
    linear-gradient(145deg, rgba(95, 130, 255, 0.12), rgba(255, 138, 0, 0.1)),
    rgba(238, 244, 249, 0.82);
}

.campaign-map::before,
.campaign-map::after {
  position: absolute;
  inset: auto;
  background: rgba(255, 255, 255, 0.46);
  content: "";
}

.campaign-map::before {
  top: 24px;
  left: -8px;
  width: 120%;
  height: 1px;
  transform: rotate(-16deg);
}

.campaign-map::after {
  top: 66px;
  left: -10px;
  width: 120%;
  height: 1px;
  transform: rotate(20deg);
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 48%;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.26);
  transform: translate(-50%, -50%);
}

.map-radius {
  position: absolute;
  top: 46%;
  left: 48%;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(24, 169, 14, 0.38);
  border-radius: 50%;
  background: rgba(24, 169, 14, 0.1);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
}

.campaign-targeting.is-visible .map-radius {
  animation: mapRadiusGrow 980ms cubic-bezier(0.2, 0.9, 0.2, 1) 220ms forwards;
}

.campaign-map em {
  position: absolute;
  right: 8px;
  bottom: 7px;
  z-index: 2;
  color: rgba(42, 58, 72, 0.68);
  font-size: 0.38rem;
  font-style: normal;
  font-weight: 700;
}

.client-profile {
  display: grid;
  gap: 5px;
  align-content: center;
}

.client-profile strong {
  color: rgba(42, 58, 72, 0.84);
  font-size: 0.5rem;
}

.client-profile span {
  display: block;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(24, 169, 14, 0.09);
  color: rgba(58, 78, 93, 0.72);
  font-size: 0.38rem;
  font-weight: 700;
}

.crm-list {
  display: grid;
  gap: 4px;
  align-content: start;
  max-height: 172px;
  min-height: 172px;
  overflow: hidden;
  padding: 8px;
}

.crm-list > strong {
  color: rgba(42, 58, 72, 0.84);
  font-size: 0.46rem;
}

.crm-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  max-height: 32px;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(240, 246, 250, 0.86);
  color: rgba(42, 58, 72, 0.82);
  font-size: 0.38rem;
  font-weight: 700;
  transition:
    max-height 260ms ease,
    margin 260ms ease,
    padding 260ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.crm-row em {
  color: rgba(24, 169, 14, 0.72);
  font-size: 0.32rem;
  font-style: normal;
}

.crm-row.is-crm-archived {
  max-height: 0;
  min-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
}

.analyse-build {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(70px, 0.72fr) minmax(150px, 1.42fr) minmax(104px, 0.96fr);
  gap: 10px 12px;
  align-content: stretch;
  align-items: stretch;
  pointer-events: none;
  inset: 14px 28px 26px;
}

.analytics-title {
  grid-column: 1 / -1;
  display: block;
  margin: -2px 0 2px;
  color: rgba(42, 58, 72, 0.9);
  font-size: clamp(1rem, 1.24vw, 1.28rem);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.metric-card {
  display: grid;
  align-content: space-between;
  gap: 4px;
  min-height: 0;
  padding: 7px 10px;
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(24, 169, 14, 0.14), rgba(95, 130, 255, 0.12));
  box-shadow: 0 18px 46px rgba(24, 169, 14, 0.08);
}

.metric-card strong,
.analytics-donut strong,
.analytics-bars strong,
.analytics-map strong,
.chart-line strong {
  color: rgba(42, 58, 72, 0.84);
  font-size: 0.43rem;
  font-weight: 800;
  line-height: 1.1;
}

.metric-card strong {
  color: rgba(24, 169, 14, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
}

.metric-card em {
  color: rgba(75, 91, 106, 0.72);
  font-size: 0.34rem;
  font-style: normal;
  font-weight: 700;
}

.metric-card i {
  display: block;
  width: 74%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(95, 130, 255, 0.42));
}

.analytics-donut,
.analytics-bars,
.analytics-map {
  display: grid;
  align-content: space-between;
  gap: 6px;
  min-height: 0;
  padding: 8px 10px;
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.analytics-donut i {
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 34%, transparent 35%),
    conic-gradient(var(--green) 0 62%, var(--orange) 62% 82%, rgba(95, 130, 255, 0.46) 82% 100%);
}

.analytics-donut em,
.analytics-map em {
  color: rgba(75, 91, 106, 0.7);
  font-size: 0.34rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.analytics-bars i {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  color: rgba(75, 91, 106, 0.7);
  font-size: 0.31rem;
  font-style: normal;
  font-weight: 700;
}

.analytics-bars i::after {
  display: block;
  width: var(--bar);
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(95, 130, 255, 0.58));
  content: "";
}

.analytics-bars b {
  font-weight: 700;
}

.analytics-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 45%, rgba(24, 169, 14, 0.16) 46% 53%, transparent 54%),
    linear-gradient(145deg, rgba(95, 130, 255, 0.12), rgba(255, 138, 0, 0.1)),
    rgba(238, 244, 249, 0.78);
}

.analytics-map i {
  position: relative;
  place-self: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(24, 169, 14, 0.38);
  border-radius: 50%;
  background: rgba(24, 169, 14, 0.1);
}

.analytics-map i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translate(-50%, -50%);
}

.chart-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 5px;
  min-height: 0;
  padding: 7px 11px;
  border-radius: 8px;
  background:
    rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(211, 225, 237, 0.82);
}

.chart-line i {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(211, 225, 237, 0.28) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(211, 225, 237, 0.2) 0 1px, transparent 1px 20px),
    rgba(244, 248, 251, 0.72);
}

.chart-line i::before,
.chart-line i::after {
  position: absolute;
  bottom: 5px;
  width: 6px;
  border-radius: 999px 999px 0 0;
  background: rgba(24, 169, 14, 0.42);
  content: "";
}

.chart-line i::before {
  left: 22%;
  height: 12px;
  box-shadow:
    54px -5px 0 rgba(24, 169, 14, 0.48),
    108px -10px 0 rgba(24, 169, 14, 0.54),
    162px -15px 0 rgba(95, 130, 255, 0.4),
    216px -12px 0 rgba(95, 130, 255, 0.44);
}

.chart-line i::after {
  left: 11%;
  height: 7px;
  background: rgba(255, 138, 0, 0.42);
  box-shadow:
    54px -2px 0 rgba(255, 138, 0, 0.4),
    108px -4px 0 rgba(255, 138, 0, 0.38),
    162px -3px 0 rgba(255, 138, 0, 0.36),
    216px -6px 0 rgba(255, 138, 0, 0.34);
}

.improve-build {
  display: grid;
  grid-template-rows: auto repeat(3, minmax(68px, auto)) minmax(12px, 1fr) auto;
  align-content: stretch;
  gap: 14px;
  pointer-events: none;
  inset: 40px 28px 34px;
}

.recommendations-title {
  display: block;
  color: rgba(42, 58, 72, 0.86);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(10px);
  text-align: center;
  white-space: nowrap;
}

.recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid rgba(211, 225, 237, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 77, 102, 0.13), rgba(255, 255, 255, 0.72) 46%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(240, 77, 102, 0.08);
}

.recommendation strong,
.recommendation em,
.recommendation b {
  color: rgba(42, 58, 72, 0.84);
}

.recommendation strong {
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.1;
}

.recommendation em {
  grid-column: 1;
  font-size: 0.44rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  color: rgba(75, 91, 106, 0.72);
}

.recommendation b {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  font-size: 0.38rem;
  white-space: nowrap;
}

.recommendation-two,
.recommendation-three {
  width: 100%;
}

.recommendations-apply {
  justify-self: center;
  align-self: end;
  min-width: 164px;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
}

.work-progress {
  display: none;
  grid-template-rows: auto auto;
  gap: 7px;
  width: 100%;
  min-width: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.work-progress.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-progress-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.work-progress-label {
  color: rgba(42, 58, 72, 0.62);
  font-size: clamp(0.62rem, 0.66vw, 0.7rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.work-done-badge {
  justify-self: end;
  margin-right: -2px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.48rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(3px) scale(0.88);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.work-done-badge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.work-progress-track {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(215, 226, 237, 0.72);
}

.work-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--progress-color, var(--blue)), color-mix(in srgb, var(--progress-color, var(--blue)), white 35%));
  transform: scaleX(0);
  transform-origin: left center;
}

.work-progress.is-running .work-progress-fill {
  animation: none;
}

.work-progress.is-live-customers .work-progress-track {
  background: color-mix(in srgb, var(--progress-color, var(--green)), white 82%);
}

.work-progress.is-live-customers .work-progress-fill {
  width: 34%;
  background: linear-gradient(90deg, transparent, var(--progress-color, var(--green)), color-mix(in srgb, var(--progress-color, var(--green)), white 28%), transparent);
  transform: translateX(-120%);
  animation: liveCustomerFlow 1450ms cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

:root[data-theme="dark"] .flow-control,
body[data-theme="dark"] .flow-control {
  border-color: rgba(158, 191, 255, 0.32);
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.18), transparent 34%),
    rgba(16, 31, 55, 0.78);
  box-shadow:
    0 18px 38px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  opacity: 0.86;
}

:root[data-theme="dark"] .flow-control:hover,
:root[data-theme="dark"] .flow-control:focus-visible,
:root[data-theme="dark"] .flow-control.is-loop-target,
body[data-theme="dark"] .flow-control:hover,
body[data-theme="dark"] .flow-control:focus-visible,
body[data-theme="dark"] .flow-control.is-loop-target {
  border-color: rgba(153, 183, 255, 0.54);
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.24), transparent 34%),
    rgba(25, 45, 78, 0.92);
  box-shadow:
    0 18px 42px rgba(2, 8, 20, 0.3),
    0 0 0 4px rgba(95, 130, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

:root[data-theme="dark"] .flow-pause-control span,
body[data-theme="dark"] .flow-pause-control span {
  background: #9fb9ff;
}

:root[data-theme="dark"] .flow-restart-control path,
body[data-theme="dark"] .flow-restart-control path {
  stroke: #9fb9ff;
}

:root[data-theme="dark"] .flow-pill,
body[data-theme="dark"] .flow-pill {
  border-color: rgba(178, 204, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(12, 25, 45, 0.62);
  box-shadow:
    0 22px 46px rgba(2, 8, 20, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(226, 237, 255, 0.58);
}

:root[data-theme="dark"] .flow-pill::before,
body[data-theme="dark"] .flow-pill::before {
  background:
    conic-gradient(
      from -90deg,
      color-mix(in srgb, var(--pill-color), white 22%) var(--pill-progress),
      transparent 0
    );
}

:root[data-theme="dark"] .flow-pill.is-flow-visited,
:root[data-theme="dark"] .flow-pill.is-flow-active,
body[data-theme="dark"] .flow-pill.is-flow-visited,
body[data-theme="dark"] .flow-pill.is-flow-active {
  border-color: color-mix(in srgb, var(--pill-color), white 34%);
  background:
    radial-gradient(circle at 50% 0, color-mix(in srgb, var(--pill-color), transparent 72%), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.075)),
    rgba(14, 30, 56, 0.86);
  box-shadow:
    0 24px 56px rgba(2, 8, 20, 0.3),
    0 0 0 1px color-mix(in srgb, var(--pill-color), transparent 56%),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: color-mix(in srgb, var(--pill-color), white 34%);
}

:root[data-theme="dark"] .flow-pill.is-flow-active,
body[data-theme="dark"] .flow-pill.is-flow-active {
  box-shadow:
    0 26px 58px rgba(2, 8, 20, 0.34),
    0 0 0 4px rgba(8, 18, 34, 0.82),
    0 0 0 5px color-mix(in srgb, var(--pill-color), transparent 48%),
    0 0 30px color-mix(in srgb, var(--pill-color), transparent 76%),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

:root[data-theme="dark"] .user-bubble,
body[data-theme="dark"] .user-bubble {
  background: linear-gradient(180deg, #5fa8ff 0%, #1d73ff 100%);
  box-shadow: 0 16px 34px rgba(6, 16, 40, 0.24);
}

:root[data-theme="dark"] .ai-bubble,
:root[data-theme="dark"] .thinking-bubble,
body[data-theme="dark"] .ai-bubble,
body[data-theme="dark"] .thinking-bubble {
  border-color: rgba(173, 201, 247, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(13, 27, 49, 0.78);
  color: rgba(226, 237, 255, 0.84);
  box-shadow:
    0 16px 34px rgba(2, 8, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .thinking-bubble span,
body[data-theme="dark"] .thinking-bubble span {
  background: rgba(178, 204, 255, 0.62);
}

:root[data-theme="dark"] .chat-input,
body[data-theme="dark"] .chat-input {
  border-color: rgba(178, 204, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(11, 24, 44, 0.82);
  box-shadow:
    0 18px 42px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .input-placeholder,
body[data-theme="dark"] .input-placeholder {
  color: rgba(202, 218, 242, 0.6);
}

:root[data-theme="dark"] .typed-text,
body[data-theme="dark"] .typed-text {
  color: rgba(235, 244, 255, 0.9);
}

:root[data-theme="dark"] .send-button,
body[data-theme="dark"] .send-button {
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(79, 125, 255, 0.28), rgba(61, 96, 180, 0.24));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .send-button::before,
body[data-theme="dark"] .send-button::before {
  background: #b9ccff;
}

:root[data-theme="dark"] .preview-window,
body[data-theme="dark"] .preview-window {
  border-color: rgba(164, 194, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(18, 33, 58, 0.98), rgba(12, 25, 45, 0.95)),
    radial-gradient(circle at 22% 16%, rgba(95, 130, 255, 0.26), transparent 18rem);
  box-shadow:
    0 30px 82px rgba(2, 8, 20, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .preview-toolbar,
body[data-theme="dark"] .preview-toolbar {
  border-bottom-color: rgba(178, 204, 255, 0.16);
  background: rgba(8, 18, 34, 0.74);
}

:root[data-theme="dark"] .preview-stage,
body[data-theme="dark"] .preview-stage {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.36), transparent 8rem),
    linear-gradient(180deg, rgba(238, 245, 255, 0.93), rgba(219, 230, 246, 0.86));
}

:root[data-theme="dark"] .preview-window.is-transfer-impact,
body[data-theme="dark"] .preview-window.is-transfer-impact {
  border-color: rgba(153, 183, 255, 0.6);
  box-shadow:
    0 32px 86px rgba(2, 8, 20, 0.42),
    0 0 0 4px rgba(95, 130, 255, 0.1),
    inset 0 0 34px rgba(95, 130, 255, 0.13);
}

:root[data-theme="dark"] .work-progress-label,
body[data-theme="dark"] .work-progress-label {
  color: rgba(213, 226, 247, 0.7);
}

:root[data-theme="dark"] .work-progress-track,
body[data-theme="dark"] .work-progress-track {
  background: rgba(178, 204, 255, 0.18);
}

body.is-flow-demo-paused .flow-section *,
body.is-flow-demo-paused .message-transfer-comet {
  animation-play-state: paused !important;
}

.chat-bubble.is-visible {
  animation: chatBubbleIn 420ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.thinking-bubble.is-visible {
  animation: thinkingBubbleIn 260ms ease forwards;
}

.thinking-bubble.is-hiding {
  animation: thinkingOut 180ms ease forwards;
}

.message-transfer-comet {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 92;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  isolation: isolate;
  pointer-events: none;
  transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(0.7);
  transform-origin: center;
  will-change: transform, opacity;
}

.ad-card.is-visible,
.ad-copy-line.is-visible,
.ad-campaign-strip.is-visible,
.campaign-scheduler.is-visible,
.campaign-targeting.is-visible,
.crm-list.is-visible,
.crm-row.is-visible,
.analytics-title.is-visible,
.metric-card.is-visible,
.analytics-donut.is-visible,
.analytics-bars.is-visible,
.analytics-map.is-visible,
.chart-line.is-visible,
.recommendation.is-visible,
.recommendations-title.is-visible,
.recommendations-apply.is-visible {
  animation: buildPieceIn 420ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes caretBlink {
  0%,
  52% {
    opacity: 1;
  }
  53%,
  100% {
    opacity: 0;
  }
}

@keyframes pricingTrialHighlight {
  0%,
  100% {
    background-position: 0% 50%;
  }

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

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .pricing-trial-note {
    color: var(--blue);
  }
}

@keyframes chatBubbleIn {
  0% {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    max-height: 240px;
    margin-top: 9px;
    padding-top: 9px;
    padding-bottom: 10px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes previewImpactGlow {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
  }
}

@keyframes previewTransferRipple {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}

@keyframes thinkingBubbleIn {
  0% {
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    max-height: 44px;
    min-height: 38px;
    margin-top: 9px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes thinkingOut {
  100% {
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
}

@keyframes thinkingDot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }
  40% {
    transform: translateY(-4px);
    opacity: 0.9;
  }
}

@keyframes liveCustomerFlow {
  0% {
    transform: translateX(-120%);
    opacity: 0.35;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(320%);
    opacity: 0.45;
  }
}

@keyframes timelineActiveSweep {
  0% {
    opacity: 0.72;
    transform: scaleX(0.18);
  }
  55% {
    opacity: 1;
    transform: scaleX(0.82);
  }
  100% {
    opacity: 0.72;
    transform: scaleX(0.18);
  }
}

@keyframes buildPieceIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes campaignScheduleFill {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes mapRadiusGrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes siteBuildOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-16px) scale(0.965);
  }
}

@keyframes buildSitePartIn {
  0% {
    color: transparent;
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }
  45% {
    opacity: 1;
    transform: translateY(-3px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes progressFill {
  0% {
    transform: scaleX(0);
  }
  58% {
    transform: scaleX(0.72);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes proofSweep {
  0% {
    background-position: 105% 50%;
  }
  100% {
    background-position: -12% 50%;
  }
}

@media (max-width: 1120px) {
  .header {
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .header-language-switcher {
    grid-column: 3;
  }

  .eu-funding-badge {
    grid-column: 4;
  }

  .login-link {
    grid-column: 5;
  }

  .theme-toggle {
    grid-column: 2;
  }

  .flow-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 34px;
  }

  .flow-heading {
    position: static;
    min-height: 0;
  }

  .flow-kicker {
    margin-bottom: 22px;
  }

  .flow-heading h2 {
    max-width: 780px;
  }

  .flow-description {
    margin-top: 34px;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .pricing-heading h2,
  .pricing-heading {
    max-width: 760px;
  }

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

  .pricing-card {
    min-height: 0;
  }

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

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

  .review-quote {
    min-height: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand,
  .footer-nav {
    grid-column: 1;
    grid-row: auto;
  }

  .conversation-demo {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-preview {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: y mandatory;
  }

  body {
    overscroll-behavior-y: contain;
  }

  .header {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    grid-template-columns: auto 1fr auto auto;
    padding: 8px 10px 8px 12px;
    gap: 10px;
    transform: none;
  }

  .header.is-scrolled {
    left: 0;
    transform: none;
  }

  .brand span {
    display: none;
  }

  .header-language-switcher {
    display: none;
  }

  .theme-toggle {
    grid-column: 3;
    width: 38px;
    height: 38px;
  }

  .mobile-menu-trigger {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .mobile-menu-trigger span {
    display: block;
    width: 18px;
    height: 2.9px;
    border-radius: 999px;
    background: var(--ink);
    opacity: 0.56;
  }

  .eu-funding-badge {
    display: none;
  }

  .mobile-menu-eu {
    display: grid;
    place-items: center;
    margin-top: 22px;
    width: 48px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
  }

  .mobile-menu-eu img {
    width: 48px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
  }

  .login-link {
    grid-column: 4;
    min-height: 40px;
    padding: 0;
    font-size: 0.9rem;
  }

  .login-link span:not(.login-avatar) {
    display: none;
  }

  .login-avatar {
    width: 28px;
    height: 28px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .section-dots {
    display: none;
  }

  .hero {
    place-items: center;
    min-height: 100svh;
    padding: 104px 20px 108px;
  }

  .eu-modal {
    padding: 10px;
  }

  .eu-modal-panel {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 18px 16px 16px;
  }

  .eu-modal-close {
    top: 10px;
    right: 12px;
    font-size: 1.62rem;
  }

  .eu-modal-panel h2 {
    font-size: 1.72rem;
  }

  .eu-modal-logos {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 20px;
  }

  .eu-modal-logo-block {
    gap: 10px;
  }

  .eu-modal-copy {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .eu-modal-copy p {
    margin-bottom: 13px;
  }

  .eu-modal-tags {
    font-size: 0.96rem;
  }

  .eu-modal-ok {
    min-height: 50px;
    border-radius: 14px;
    font-size: 1.12rem;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.74rem;
  }

  .hero-title {
    width: min(100%, calc(100vw - 40px));
    color: rgba(21, 33, 43, 0.34);
    font-size: var(--hero-title-size, clamp(1.52rem, 7.6vw, 2rem));
    line-height: 1.08;
  }

  .phrase-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 0.04em;
    min-height: 0;
    white-space: normal;
    text-align: center;
  }

  .phrase-line {
    column-gap: 0.13em;
  }

  .jump-word {
    padding-bottom: 0.09em;
  }

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

  .hero-proof {
    display: grid;
    justify-items: center;
    margin-top: 24px;
    max-width: calc(100vw - 36px);
    padding-inline: 0;
    font-size: clamp(1.09rem, 5.76vw, 1.74rem);
    line-height: 1.02;
    text-align: center;
  }

  .hero-proof span {
    display: block;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    margin-top: 22px;
    font-size: clamp(0.9rem, 4.22vw, 1.08rem);
    line-height: 1.48;
    text-align: center;
  }

  .hero-copy br {
    display: none;
  }

  .hero-socials {
    bottom: 32px;
  }

  .hero-social-link {
    opacity: 1;
    filter: none;
  }

  .flow-section {
    place-items: start center;
    min-height: 100svh;
    padding: 86px 18px 48px;
  }

  .flow-inner {
    gap: 20px;
    margin-top: 0;
    transform: none;
  }

  .flow-heading h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    line-height: 1.08;
    text-align: center;
  }

  .flow-description {
    margin-top: 18px;
    font-size: clamp(0.92rem, 4.35vw, 1.08rem);
    line-height: 1.46;
    text-align: center;
  }

  .flow-description-desktop {
    display: none;
  }

  .flow-description-mobile {
    display: inline;
  }

  .flow-visual {
    --flow-visual-gap: 14px;
    gap: 18px;
  }

  .principle-section {
    place-items: center;
    padding: 104px 18px 84px;
  }

  .principle-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: calc(100vw - 36px);
    text-align: center;
  }

  .principle-title {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1.08;
    text-align: center;
  }

  .principle-title > span {
    white-space: normal;
  }

  .prompt-title {
    margin-top: 24px;
    margin-bottom: 10px;
    max-width: 100%;
    font-size: clamp(0.9rem, 4.2vw, 1.08rem);
    line-height: 1.5;
    text-align: center;
  }

  .prompt-builder {
    width: 100%;
    max-width: 100%;
    min-height: 104px;
    padding: 18px 70px 18px 18px;
    border-radius: 16px;
  }

  .prompt-builder textarea {
    top: 18px;
    right: 70px;
    left: 18px;
    font-size: clamp(0.96rem, 4.8vw, 1.14rem);
  }

  .prompt-typing-demo {
    top: 18px;
    right: 70px;
    left: 18px;
    font-size: clamp(0.96rem, 4.8vw, 1.14rem);
    white-space: normal;
  }

  .principle-description {
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(0.9rem, 4.2vw, 1.08rem);
    line-height: 1.5;
    text-align: center;
  }

  .principle-description > span {
    white-space: normal;
  }

  .prompt-send {
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
  }

  .pricing-section {
    justify-items: center;
    padding: 104px 18px 86px;
    overflow: hidden;
  }

  .pricing-inner {
    width: min(100%, calc(100vw - 36px));
    margin-inline: auto;
  }

  .pricing-heading {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    margin-left: 0;
    transform: none;
    text-align: center;
  }

  .pricing-heading h2 {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-sans);
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
  }

  .pricing-heading h2 > span,
  .pricing-heading-line {
    white-space: normal;
  }

  .pricing-toggle {
    justify-self: center;
  }

  .pricing-grid {
    width: 100%;
    gap: 7px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .pricing-card {
    position: relative;
    justify-items: center;
    grid-template-rows: none;
    gap: 5px;
    padding: 14px 16px;
    border: 1px solid rgba(185, 205, 222, 0.68);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition:
      padding 260ms cubic-bezier(0.2, 0.9, 0.2, 1),
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
    will-change: transform;
  }

  .pricing-card::after {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(21, 33, 43, 0.42);
    border-bottom: 2px solid rgba(21, 33, 43, 0.42);
    content: "";
    transform: rotate(45deg);
    transform-origin: center;
    transition:
      border-color 180ms ease,
      transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .pricing-card.is-pricing-open::after {
    border-color: rgba(21, 33, 43, 0.64);
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .pricing-card.is-pricing-open {
    padding-block: 18px;
  }

  .pricing-card:focus-visible {
    outline: 2px solid rgba(95, 130, 255, 0.34);
    outline-offset: 4px;
  }

  .pricing-card > div:first-child {
    display: contents;
  }

  .pricing-card h3 {
    order: 1;
  }

  .pricing-rate {
    order: 2;
    min-height: 0;
    gap: 2px;
  }

  .pricing-audience {
    order: 3;
    max-width: 310px;
    margin-top: 0;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .pricing-trial-note {
    order: 4;
    margin-top: 0;
  }

  .pricing-trial-note,
  .pricing-billing,
  .pricing-card ul,
  .pricing-card a {
    overflow: hidden;
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height 340ms cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 220ms ease,
      padding 280ms ease,
      margin 280ms ease,
      border-color 280ms ease,
      transform 300ms cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .pricing-card:not(.is-pricing-open) .pricing-trial-note,
  .pricing-card:not(.is-pricing-open) .pricing-billing,
  .pricing-card:not(.is-pricing-open) ul,
  .pricing-card:not(.is-pricing-open) a {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .pricing-card:not(.is-pricing-open) .pricing-trial-note,
  .pricing-card:not(.is-pricing-open) .pricing-billing {
    margin-top: 0;
  }

  .pricing-card:not(.is-pricing-open) ul {
    padding-top: 0;
    border-top-color: transparent;
  }

  .pricing-card:not(.is-pricing-open) a {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
  }

  .pricing-price {
    gap: 3px;
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .pricing-card h3 {
    font-size: clamp(1.05rem, 5.1vw, 1.34rem);
  }

  .pricing-price span {
    font-size: 0.52rem;
  }

  .pricing-card ul {
    order: 5;
    width: min(100%, 330px);
    margin-inline: auto;
    gap: 8px;
    text-align: left;
  }

  .pricing-card a {
    order: 6;
    width: min(100%, 330px);
  }

  .reviews-section {
    padding: 58px 18px 46px;
  }

  .reviews-inner {
    width: min(100%, calc(100vw - 36px));
  }

  .reviews-inner h2 {
    margin-bottom: 22px;
    font-family: var(--font-sans);
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1.08;
    text-align: center;
  }

  .reviews-inner h2 span {
    display: block;
    white-space: nowrap;
  }

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

  .review-quote {
    min-height: 0;
  }

  .review-quote:nth-child(n + 5) {
    display: none;
  }

  .review-stars {
    margin-bottom: 5px;
    font-size: clamp(0.98rem, 4.68vw, 1.21rem);
  }

  .review-quote blockquote,
  .review-quote.review-align-right blockquote {
    font-size: clamp(0.8rem, 3.96vw, 1.01rem);
    line-height: 1.28;
  }

  .review-quote figcaption {
    justify-content: flex-end;
    margin-top: 4px;
  }

  .review-quote strong,
  .review-quote.review-align-right strong {
    font-size: clamp(0.65rem, 3.17vw, 0.74rem) !important;
    line-height: 1.08;
  }

  .review-quote em,
  .review-quote.review-align-right em {
    font-size: clamp(0.58rem, 2.74vw, 0.65rem) !important;
    line-height: 1.1;
  }

  .review-quote figcaption span:last-child {
    display: grid;
    justify-content: flex-end;
    gap: 2px;
    white-space: normal;
  }

  .review-quote.review-align-right figcaption span:last-child {
    transform: none;
  }

  .review-quote strong.is-review-active,
  .review-quote em.is-review-active {
    transform: none;
  }

  .footer {
    padding: 42px 20px 22px;
    border-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    gap: 8px;
    font-size: 0.92rem;
  }

  .footer-logo img {
    width: 30px;
    height: 30px;
  }

  .footer-brand > p {
    max-width: 330px;
    margin-top: 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .footer-funding {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    align-items: start;
    gap: 10px;
    width: 100%;
  }

  .footer-funding-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 6px;
    text-align: left;
  }

  .footer-funding-funds img {
    width: 13px;
    height: 22px;
  }

  .footer-funding-poland img {
    width: 34px;
    height: 22px;
  }

  .footer-funding-eu img {
    width: 34px;
    height: 22px;
  }

  .footer-funding-item p {
    gap: 2px;
    font-size: 0.52rem;
    line-height: 1.12;
  }

  .footer-funding-item strong {
    font-size: 0.5rem;
    line-height: 1.08;
  }

  .footer-funding-item span {
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.7fr) minmax(0, 1.25fr);
    gap: 22px 14px;
    padding-top: 0;
  }

  .footer-nav div {
    gap: 7px;
  }

  .footer-nav h2 {
    margin-bottom: 5px;
    font-size: 0.62rem;
  }

  .footer-nav a,
  .footer-nav p {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 0;
    text-align: center;
    font-size: 0.58rem;
    line-height: 1.35;
    white-space: nowrap;
  }

  .flow-pills {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    transform: translateY(20px);
  }

  .flow-demo-controls {
    bottom: calc(100% + 10px);
    right: 0;
  }

  .flow-control {
    width: 24px;
    height: 24px;
  }

  .flow-restart-control {
    display: none;
  }

  .flow-pause-control {
    display: none;
  }

  .flow-pill {
    min-height: 22px;
    padding: 0 4px;
    border-color: rgba(214, 226, 238, 0.66);
    font-size: clamp(0.46rem, 2.2vw, 0.58rem);
  }

  .flow-pill::before {
    inset: -3px;
    padding: 1.6px;
  }

  .conversation-demo {
    --conversation-height: 150px;
    min-height: 0;
    gap: 8px;
  }

  .chat-console {
    gap: 5px;
    height: var(--conversation-height);
  }

  .conversation-thread {
    padding-inline: 2px;
  }

  .chat-bubble {
    max-width: 78%;
    padding: 4px 7px 5px;
    border-radius: 11px;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .user-bubble {
    border-bottom-right-radius: 4px;
  }

  .ai-bubble {
    border-bottom-left-radius: 4px;
  }

  .thinking-bubble {
    gap: 3px;
    min-height: 19px;
    padding: 0 8px;
    border-radius: 9px 9px 9px 4px;
  }

  .thinking-bubble span {
    width: 3px;
    height: 3px;
  }

  .chat-input {
    min-height: 46px;
    padding: 8px 6px 8px 0;
    border-radius: 23px;
  }

  .input-placeholder,
  .typed-text {
    margin-left: 18px;
    font-size: clamp(0.76rem, 0.82vw, 0.84rem);
    line-height: 1.32;
  }

  .send-button {
    width: 38px;
    height: 38px;
    margin-right: 4px;
  }

  .send-button::before {
    width: 19px;
    height: 19px;
  }

  .preview-stage {
    padding: 12px;
  }

  .work-preview {
    min-height: min(42svh, 520px);
  }

  .preview-window {
    min-height: min(42svh, 520px);
  }

  .preview-toolbar {
    height: 28px;
    padding: 0 10px;
  }

  .preview-toolbar span {
    width: 6px;
    height: 6px;
  }

  .site-build,
  .ad-build,
  .analyse-build,
  .improve-build {
    inset: 12px;
  }

  .site-build {
    grid-template-rows: auto minmax(118px, 1.25fr) minmax(84px, 0.96fr) minmax(58px, 0.58fr);
    align-content: stretch;
    gap: 8px;
  }

  .site-top {
    grid-template-columns: auto minmax(54px, 1fr) repeat(3, minmax(28px, auto));
    gap: 4px;
  }

  .site-logo-mark {
    width: 12px;
    height: 12px;
  }

  .site-logo {
    width: 62px;
    height: 14px;
    padding: 0 6px;
    font-size: 0.48rem;
    line-height: 14px;
  }

  .site-nav {
    height: 10px;
    padding: 0 4px;
    font-size: 0.36rem;
    line-height: 10px;
  }

  .site-hero-mini {
    grid-template-columns: minmax(0, 0.95fr) minmax(78px, 0.72fr);
    gap: 8px;
    min-height: 0;
  }

  .site-copy-mini {
    gap: 5px;
  }

  .site-hero-picture {
    height: 100%;
    min-height: 0;
  }

  .site-line-hero {
    min-height: 26px;
    font-size: 0.46rem;
  }

  .site-line-short {
    min-height: 22px;
    font-size: 0.36rem;
  }

  .site-button {
    width: 64px;
    height: 18px;
    font-size: 0.42rem;
    line-height: 18px;
  }

  .site-cards {
    gap: 6px;
    min-height: 0;
  }

  .site-cards span {
    height: 100%;
    min-height: 0;
    padding: 5px;
  }

  .site-cards i {
    height: 12px;
    margin-bottom: 4px;
  }

  .site-cards strong {
    font-size: 0.38rem;
  }

  .site-cards em {
    margin-top: 3px;
    font-size: 0.32rem;
  }

  .site-booking-strip {
    gap: 3px 8px;
    margin-top: 1px;
    padding: 6px 8px;
    align-self: stretch;
    align-content: center;
  }

  .site-booking-strip strong {
    font-size: 0.4rem;
  }

  .site-booking-strip em {
    font-size: 0.32rem;
  }

  .site-booking-strip b,
  .site-footer-mini {
    display: none;
  }

  .ad-build {
    grid-template-rows: auto minmax(22px, 0.35fr) minmax(168px, 1.2fr) minmax(22px, 0.35fr) auto;
    gap: 9px 8px;
    inset: 10px 12px 12px;
    align-content: stretch;
    align-items: stretch;
  }

  .ad-copy-line {
    top: 0;
    max-width: 100%;
    font-size: 1.28rem;
    line-height: 1.05;
  }

  .ad-card,
  .ad-card-one,
  .ad-card-two,
  .ad-card-three {
    grid-row: 3;
    height: 100%;
    min-height: 0;
    padding: 8px;
  }

  .ad-card {
    gap: 5px;
  }

  .ad-card::before {
    height: 28px;
  }

  .ad-card::after {
    height: 14px;
  }

  .ad-card i {
    padding: 2px 6px;
    font-size: 0.31rem;
  }

  .ad-card strong {
    font-size: 0.43rem;
  }

  .ad-card em {
    font-size: 0.34rem;
  }

  .ad-campaign-strip {
    grid-row: 5;
    min-height: 0;
    margin-top: 0;
    align-self: stretch;
  }

  .ad-campaign-strip b {
    padding: 8px 18px;
    font-size: 0.76rem;
  }

  .campaign-build {
    gap: 6px;
  }

  .campaign-scheduler {
    gap: 4px;
    padding: 6px 8px;
  }

  .campaign-targeting {
    grid-template-columns: 0.95fr 1fr;
    gap: 6px;
    padding: 6px;
  }

  .campaign-map {
    min-height: 72px;
  }

  .map-radius {
    width: 58px;
    height: 58px;
  }

  .client-profile {
    gap: 4px;
  }

  .client-profile span {
    padding: 3px 6px;
    font-size: 0.32rem;
  }

  .crm-list {
    gap: 3px;
    max-height: 118px;
    min-height: 118px;
    padding: 6px;
  }

  .crm-row {
    min-height: 19px;
    padding: 3px 6px;
  }

  .analyse-build {
    grid-template-rows: auto minmax(58px, 0.72fr) minmax(160px, 1.75fr) minmax(74px, 0.85fr);
    gap: 9px 8px;
    inset: 10px 12px 12px;
    align-content: stretch;
    align-items: stretch;
  }

  .analytics-title {
    font-size: 0.82rem;
  }

  .metric-card,
  .analytics-donut,
  .analytics-bars,
  .analytics-map,
  .chart-line {
    padding: 5px 7px;
  }

  .analytics-donut,
  .analytics-bars,
  .analytics-map {
    min-height: 0;
  }

  .metric-card strong {
    font-size: 0.64rem;
  }

  .metric-card em,
  .analytics-donut em,
  .analytics-map em {
    font-size: 0.28rem;
  }

  .metric-card i {
    height: 4px;
  }

  .analytics-donut i {
    width: 34px;
    height: 34px;
  }

  .analytics-bars i {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px;
    font-size: 0.26rem;
  }

  .analytics-bars i::after {
    height: 8px;
  }

  .analytics-map i {
    width: 42px;
    height: 42px;
  }

  .chart-line i {
    min-height: 0;
  }

  .improve-build {
    grid-template-rows: auto minmax(54px, 0.78fr) minmax(54px, 0.78fr) minmax(54px, 0.78fr) minmax(58px, 0.9fr) auto;
    align-content: stretch;
    gap: 10px;
    inset: 18px 12px 14px;
  }

  .recommendations-title {
    margin-bottom: 2px;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }

  .recommendation {
    min-height: 0;
    height: 100%;
    padding: 8px 10px;
  }

  .recommendation strong {
    font-size: 0.52rem;
  }

  .recommendation em {
    font-size: 0.35rem;
  }

  .recommendation b {
    padding: 6px 8px;
    font-size: 0.3rem;
  }

  .recommendations-apply {
    grid-row: 6;
    min-width: 118px;
    min-height: 32px;
    padding: 0 18px;
    font-size: 0.62rem;
  }

  .site-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-cards span {
    min-height: 44px;
  }

  .ad-build {
    gap: 8px;
  }

}

@media (max-width: 420px) {
  .hero-title {
    font-size: var(--hero-title-size, clamp(1.48rem, 7.4vw, 1.9rem));
  }

  .phrase-row {
    row-gap: 0.03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

  body::before,
  body::after {
    animation: none !important;
  }

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

  .jump-ball {
    display: none;
  }

  .jump-word {
    background: transparent;
  }

  .jump-word[data-tone="build"] {
    color: var(--blue);
  }

  .jump-word[data-tone="advertise"] {
    color: var(--orange);
  }

  .jump-word[data-tone="customers"] {
    color: var(--green);
  }

  .jump-word[data-tone="improve"] {
    color: var(--rose);
  }
}
