:root {
  color-scheme: dark;
  --bg: #07111f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f5f9ff;
  --text-muted: rgba(229, 238, 250, 0.74);
  --text-subtle: rgba(229, 238, 250, 0.54);
  --primary: #53a7ff;
  --teal: #38d5c5;
  --shadow: 0 30px 80px rgba(3, 11, 24, 0.45);
  --shadow-soft: 0 18px 40px rgba(3, 11, 24, 0.28);
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 36px;
  --container: 1180px;
  --header-height: 88px;
  --font-heading: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --transition: 240ms ease;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #edf4ff;
  --surface: rgba(12, 50, 96, 0.06);
  --surface-strong: rgba(12, 50, 96, 0.1);
  --text: #0d1b2f;
  --text-muted: rgba(13, 27, 47, 0.72);
  --text-subtle: rgba(13, 27, 47, 0.54);
  --primary: #2f7dff;
  --teal: #0cae9a;
  --shadow: 0 28px 70px rgba(38, 82, 140, 0.14);
  --shadow-soft: 0 16px 36px rgba(38, 82, 140, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 18%, rgba(83, 167, 255, 0.14), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(56, 213, 197, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #06101c 48%, #091525 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  top: 0 !important;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 16% 16%, rgba(47, 125, 255, 0.12), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(12, 174, 154, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f1f6ff 48%, #eaf2ff 100%);
}

.translate-widget {
  position: fixed;
  left: -9999px;
  bottom: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

#google_translate_element,
#google_translate_element .goog-te-gadget,
#google_translate_element .goog-te-gadget-simple,
#google_translate_element .goog-te-combo {
  position: absolute !important;
  inset: auto !important;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon {
  display: none !important;
}

.header__utilities .skiptranslate,
.mobile-menu__tools .skiptranslate {
  display: none !important;
}

body.is-locked,
html.is-locked {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

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

p,
ul,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #07111f;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}

:root[data-theme="light"] .page-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(18, 54, 93, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 54, 93, 0.06) 1px, transparent 1px);
}

.page-glow {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.6;
}

.page-glow--one {
  top: 8%;
  left: -6%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(83, 167, 255, 0.18);
}

.page-glow--two {
  right: 4%;
  top: 24%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(56, 213, 197, 0.16);
}

:root[data-theme="light"] .page-glow--one {
  background: rgba(47, 125, 255, 0.12);
}

:root[data-theme="light"] .page-glow--two {
  background: rgba(12, 174, 154, 0.11);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

main {
  overflow: hidden;
}

.section {
  padding: 84px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.footer__nav a:focus-visible,
.logo:focus-visible,
.menu-toggle:focus-visible,
.theme-toggle:focus-visible,
.language-control:focus-within,
.floating-cta:focus-visible,
.back-to-top:focus-visible,
.billing-switch__button:focus-visible,
.modal__tab:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid rgba(83, 167, 255, 0.72);
  outline-offset: 3px;
}

.btn--primary {
  color: #07111f;
  background: linear-gradient(135deg, #72e4d6 0%, #62b7ff 100%);
  box-shadow: 0 12px 28px rgba(83, 167, 255, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 40px rgba(83, 167, 255, 0.32);
}

.btn--secondary,
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

:root[data-theme="light"] .btn--secondary,
:root[data-theme="light"] .btn--ghost {
  border-color: rgba(18, 54, 93, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.btn--secondary:hover,
.btn--ghost:hover,
.btn--secondary:focus-visible,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .btn--secondary:hover,
:root[data-theme="light"] .btn--ghost:hover,
:root[data-theme="light"] .btn--secondary:focus-visible,
:root[data-theme="light"] .btn--ghost:focus-visible {
  border-color: rgba(47, 125, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.btn--large {
  min-height: 54px;
  padding-inline: 1.4rem;
}

.btn--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  padding: 14px 0 10px;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.74), rgba(7, 17, 31, 0.08));
  transition: padding 260ms ease, background-color 260ms ease;
}

:root[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(248, 251, 255, 0.35));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 18, 31, 0.38), transparent 85%);
  opacity: 0.9;
}

:root[data-theme="light"] .site-header::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 85%);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-menu-open {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.3));
}

:root[data-theme="light"] .site-header.is-menu-open {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0.62));
}

.site-header.is-menu-open .header__inner {
  border-color: rgba(143, 198, 255, 0.18);
  box-shadow:
    0 24px 58px rgba(3, 11, 24, 0.34),
    0 0 0 1px rgba(83, 167, 255, 0.08) inset;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-height) - 6px);
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(143, 198, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at left top, rgba(83, 167, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 30, 50, 0.9), rgba(8, 18, 31, 0.78));
  box-shadow:
    0 18px 44px rgba(3, 11, 24, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease,
    transform 260ms ease;
}

:root[data-theme="light"] .header__inner {
  border-color: rgba(18, 54, 93, 0.12);
  background:
    radial-gradient(circle at left top, rgba(47, 125, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.9));
  box-shadow:
    0 18px 44px rgba(38, 82, 140, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.header__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 74%);
}

:root[data-theme="light"] .header__inner::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 46%);
}

.site-header.is-scrolled .header__inner {
  border-color: rgba(143, 198, 255, 0.18);
  box-shadow:
    0 24px 58px rgba(3, 11, 24, 0.34),
    0 0 0 1px rgba(83, 167, 255, 0.08) inset;
  transform: translateY(-1px);
}

:root[data-theme="light"] .site-header.is-scrolled .header__inner,
:root[data-theme="light"] .site-header.is-menu-open .header__inner {
  border-color: rgba(18, 54, 93, 0.14);
  box-shadow:
    0 24px 58px rgba(38, 82, 140, 0.16),
    0 0 0 1px rgba(47, 125, 255, 0.05) inset;
}

.header__inner > *,
.hero__grid > *,
.dashboard-window__grid > *,
.feature-grid > *,
.steps-grid > *,
.use-case-grid > *,
.pricing-grid > *,
.faq__grid > *,
.cta-panel > *,
.footer__inner > * {
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: calc(100% - 52px);
  padding: 0;
  text-align: left;
}

.logo__type {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.logo__name {
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(83, 167, 255, 0.18);
}

.logo__tagline {
  color: rgba(143, 198, 255, 0.78);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo--footer .logo__name {
  font-size: 1.12rem;
}

.logo--footer .logo__tagline {
  color: rgba(229, 238, 250, 0.62);
}

.desktop-nav,
.header__actions {
  display: none;
}

.header__utilities {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.language-control,
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(143, 198, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 25% 20%, rgba(141, 247, 236, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  box-shadow:
    0 10px 22px rgba(2, 9, 18, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

:root[data-theme="light"] .language-control,
:root[data-theme="light"] .theme-toggle {
  border-color: rgba(18, 54, 93, 0.12);
  background:
    radial-gradient(circle at 25% 20%, rgba(12, 174, 154, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 10px 22px rgba(38, 82, 140, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.94);
}

.language-control:hover,
.language-control:focus-within,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(143, 198, 255, 0.24);
  color: var(--text);
}

:root[data-theme="light"] .language-control:hover,
:root[data-theme="light"] .language-control:focus-within,
:root[data-theme="light"] .theme-toggle:hover,
:root[data-theme="light"] .theme-toggle:focus-visible {
  border-color: rgba(47, 125, 255, 0.2);
}

.language-control {
  position: relative;
  min-width: 86px;
  padding: 0 1.9rem 0 0.72rem;
  gap: 0.5rem;
  overflow: hidden;
  flex: 0 0 auto;
}

.language-control--mobile {
  display: none;
}

.language-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.78rem;
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-64%) rotate(45deg);
  pointer-events: none;
  opacity: 0.8;
}

.language-control__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.language-control__icon svg {
  width: 16px;
  height: 16px;
}

.language-control__value {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.language-control__select {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.language-control__select option {
  color: #0d1b2f;
}

.language-control__select::-ms-expand {
  display: none;
}

.language-control__select:disabled {
  cursor: not-allowed;
  color: var(--text-subtle);
}

:root[data-translation-available="false"] .language-control {
  opacity: 0.76;
}

:root[data-translation-available="false"] .language-control__value {
  color: var(--text-subtle);
}

.theme-toggle {
  justify-content: center;
  width: 46px;
  padding: 0;
  color: var(--text);
}

.theme-toggle__icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

:root[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

:root[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: scale(0.72) rotate(18deg);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(143, 198, 255, 0.14);
  background:
    radial-gradient(circle at 25% 20%, rgba(141, 247, 236, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 10px 22px rgba(2, 9, 18, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

:root[data-theme="light"] .menu-toggle {
  border-color: rgba(18, 54, 93, 0.12);
  background:
    radial-gradient(circle at 25% 20%, rgba(12, 174, 154, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 10px 22px rgba(38, 82, 140, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.94);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(143, 198, 255, 0.22);
  box-shadow:
    0 14px 28px rgba(2, 9, 18, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .menu-toggle:hover,
:root[data-theme="light"] .menu-toggle:focus-visible {
  border-color: rgba(47, 125, 255, 0.2);
  box-shadow:
    0 14px 28px rgba(38, 82, 140, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.site-header.is-menu-open .menu-toggle {
  border-color: rgba(143, 198, 255, 0.24);
  background:
    radial-gradient(circle at 25% 20%, rgba(141, 247, 236, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.07);
}

:root[data-theme="light"] .site-header.is-menu-open .menu-toggle {
  border-color: rgba(47, 125, 255, 0.2);
  background:
    radial-gradient(circle at 25% 20%, rgba(12, 174, 154, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

:root[data-theme="light"] .menu-toggle span {
  background: #0d1b2f;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  padding-top: 12px;
}

.mobile-menu__inner {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  overflow: hidden;
  padding: 1.05rem;
  border: 1px solid rgba(143, 198, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(83, 167, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(141, 247, 236, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(13, 27, 45, 0.98), rgba(8, 18, 31, 0.98));
  box-shadow:
    0 26px 60px rgba(2, 9, 18, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .mobile-menu__inner {
  border-color: rgba(18, 54, 93, 0.12);
  background:
    radial-gradient(circle at top right, rgba(47, 125, 255, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(12, 174, 154, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow:
    0 26px 60px rgba(38, 82, 140, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}
.mobile-menu:not([hidden]) .mobile-menu__inner {
  animation: mobileMenuIn 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%);
}

.mobile-menu__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.15rem;
}

.mobile-menu__tools {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
}

.mobile-menu__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(83, 167, 255, 0.18);
  border-radius: 999px;
  background: rgba(83, 167, 255, 0.08);
  color: #9ac9ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu__copy {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mobile-nav {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.mobile-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    color 240ms ease;
}

.mobile-nav a::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
  transition: transform 240ms ease, opacity 240ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(83, 167, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.mobile-menu__actions {
  display: grid;
  gap: 0.8rem;
}

:root[data-theme="light"] .dashboard-window,
:root[data-theme="light"] .glass-card,
:root[data-theme="light"] .trust-item,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .step-card,
:root[data-theme="light"] .use-case-card,
:root[data-theme="light"] .plan-card,
:root[data-theme="light"] .mini-plan,
:root[data-theme="light"] .faq-item,
:root[data-theme="light"] .comparison-table,
:root[data-theme="light"] .infographic-diagram,
:root[data-theme="light"] .infographic-card,
:root[data-theme="light"] .cta-panel,
:root[data-theme="light"] .modal__dialog,
:root[data-theme="light"] .modal-form {
  border-color: rgba(18, 54, 93, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.88)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 52px rgba(38, 82, 140, 0.1);
}

:root[data-theme="light"] .dashboard-window::before,
:root[data-theme="light"] .feature-card::before,
:root[data-theme="light"] .step-card::before,
:root[data-theme="light"] .use-case-card::before,
:root[data-theme="light"] .plan-card::before,
:root[data-theme="light"] .mini-plan::before,
:root[data-theme="light"] .infographic-diagram::before,
:root[data-theme="light"] .infographic-card::before {
  background: rgba(47, 125, 255, 0.08);
}

:root[data-theme="light"] .dashboard-search,
:root[data-theme="light"] .task-item,
:root[data-theme="light"] .billing-switch,
:root[data-theme="light"] .modal__tab,
:root[data-theme="light"] .modal__close,
:root[data-theme="light"] .email-form input,
:root[data-theme="light"] .email-form select,
:root[data-theme="light"] .modal-form input,
:root[data-theme="light"] .modal-form select,
:root[data-theme="light"] .modal-form textarea,
:root[data-theme="light"] .back-to-top {
  border-color: rgba(18, 54, 93, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

:root[data-theme="light"] .infographic-diagram__stage::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 125, 255, 0.08), transparent 24%),
    linear-gradient(rgba(18, 54, 93, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 54, 93, 0.05) 1px, transparent 1px);
}

:root[data-theme="light"] .workflow-core__ring {
  border-color: rgba(47, 125, 255, 0.14);
}

:root[data-theme="light"] .workflow-core__ring--inner,
:root[data-theme="light"] .workflow-core__pulse {
  border-color: rgba(12, 174, 154, 0.18);
}

:root[data-theme="light"] .workflow-core__label,
:root[data-theme="light"] .workflow-float,
:root[data-theme="light"] .workflow-activity {
  border-color: rgba(18, 54, 93, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 34px rgba(38, 82, 140, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.94);
}

:root[data-theme="light"] .workflow-float__lines i,
:root[data-theme="light"] .workflow-activity__row div {
  background: rgba(18, 54, 93, 0.08);
}

:root[data-theme="light"] .modal__backdrop {
  background: rgba(227, 236, 250, 0.72);
}

:root[data-theme="light"] .trust-item:hover,
:root[data-theme="light"] .feature-card:hover,
:root[data-theme="light"] .step-card:hover,
:root[data-theme="light"] .use-case-card:hover,
:root[data-theme="light"] .plan-card:hover,
:root[data-theme="light"] .mini-plan:hover,
:root[data-theme="light"] .faq-item:hover,
:root[data-theme="light"] .comparison-table:hover,
:root[data-theme="light"] .infographic-diagram:hover,
:root[data-theme="light"] .infographic-card:hover {
  box-shadow:
    0 30px 56px rgba(38, 82, 140, 0.14),
    0 0 0 1px rgba(47, 125, 255, 0.06) inset;
}

:root[data-theme="light"] .plan-card:hover .plan-card__amount,
:root[data-theme="light"] .mini-plan:hover .mini-plan__price {
  color: var(--text);
}

.hero {
  position: relative;
  padding-top: 44px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.58;
  pointer-events: none;
}

.hero::before {
  top: 4%;
  right: -6%;
  width: 320px;
  height: 320px;
  background: rgba(83, 167, 255, 0.16);
  animation: heroAuroraOne 12s ease-in-out infinite;
}

.hero::after {
  left: -5%;
  bottom: 6%;
  width: 260px;
  height: 260px;
  background: rgba(56, 213, 197, 0.12);
  animation: heroAuroraTwo 10s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero__content {
  position: relative;
  max-width: 640px;
}

.hero__content .eyebrow {
  position: relative;
}

.hero__content .eyebrow::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 68px;
  height: 1px;
  margin-left: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(83, 167, 255, 0), rgba(83, 167, 255, 0.94), rgba(141, 247, 236, 0.9));
  animation: heroEyebrowGlow 4.8s ease-in-out infinite;
}

.hero__content h1 {
  max-width: 11.5ch;
  font-family: var(--font-heading);
  font-size: clamp(1.72rem, 3.5vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  position: relative;
  color: var(--text);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__content h1 {
    background:
      linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #a9d7ff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(141, 247, 236, 0.95), rgba(255, 255, 255, 0.18));
    background-size: 100% 100%, 240% 100%;
    background-position: 0 0, 140% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: heroTitleShimmer 8.8s ease-in-out infinite;
  }
}

.hero__content h1::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 6%;
  width: 56%;
  height: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(83, 167, 255, 0), rgba(141, 247, 236, 0.2), rgba(83, 167, 255, 0));
  filter: blur(18px);
  opacity: 0.45;
  animation: heroTitleSweep 7.6s ease-in-out infinite;
  pointer-events: none;
}

.hero__lede {
  max-width: 58ch;
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.08rem);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}


.hero__highlights span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  animation: heroPillFloat 8s ease-in-out infinite;
}

.hero__highlights span::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -35%;
  width: 66%;
  height: 220%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0;
  animation: heroPillSheen 7.4s ease-in-out infinite;
}

.hero__highlights span:nth-child(2) {
  animation-delay: 0.8s;
}

.hero__highlights span:nth-child(2)::before {
  animation-delay: 0.7s;
}

.hero__highlights span:nth-child(3) {
  animation-delay: 1.6s;
}

.hero__highlights span:nth-child(3)::before {
  animation-delay: 1.4s;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero__actions .btn {
  position: relative;
  overflow: hidden;
}

.hero__actions .btn--primary {
  box-shadow: 0 16px 34px rgba(83, 167, 255, 0.18);
  animation: heroButtonFloat 6.8s ease-in-out infinite;
}

.hero__actions .btn--primary::after,
.hero__actions .btn--secondary::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -25%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  opacity: 0;
  pointer-events: none;
  animation: heroButtonSheen 7.6s ease-in-out infinite;
}

.hero__actions .btn--secondary::after {
  animation-delay: 1.05s;
}

.hero__microcopy {
  max-width: 46ch;
  margin-top: 1.05rem;
  color: var(--text-subtle);
  font-size: 0.95rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.stat-chip {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: heroStatFloat 8.6s ease-in-out infinite;
}

.stat-chip::after {
  content: "";
  position: absolute;
  inset: -45% auto auto -22%;
  width: 54%;
  height: 190%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0;
  animation: heroPillSheen 8.8s ease-in-out infinite;
}

.stat-chip:nth-child(2) {
  animation-delay: 0.9s, 4s;
}

.stat-chip:nth-child(2)::after {
  animation-delay: 0.8s;
}

.stat-chip:nth-child(3) {
  animation-delay: 1.8s, 8s;
}

.stat-chip:nth-child(3)::after {
  animation-delay: 1.6s;
}

.stat-chip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-chip span {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.hero__visual {
  position: relative;
  min-height: clamp(430px, 62vw, 640px);
  padding: 1rem 0.6rem 1.2rem;
  isolation: isolate;
  perspective: 1600px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-bg-shift-x: 0px;
  --hero-bg-shift-y: 0px;
  --hero-glow-x: 52%;
  --hero-glow-y: 44%;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__visual::before {
  inset: 12% 10% 14% 8%;
  border-radius: 42px;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(83, 167, 255, 0.18), transparent 28%),
    radial-gradient(circle at 74% 32%, rgba(56, 213, 197, 0.16), transparent 24%);
  filter: blur(24px);
  opacity: 0.94;
  transform: translate3d(var(--hero-bg-shift-x), var(--hero-bg-shift-y), 0);
}

.hero__visual::after {
  left: 14%;
  right: 12%;
  bottom: 2%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 167, 255, 0.24), rgba(83, 167, 255, 0));
  filter: blur(30px);
  opacity: 0.5;
}

.hero-ambient {
  position: absolute;
  inset: 2% -3% -3%;
  pointer-events: none;
}

.hero-ambient__ring,
.hero-ambient__trail,
.hero-ambient__grid,
.hero-ambient__pulse,
.hero-ambient__particle {
  position: absolute;
}

.hero-ambient__ring {
  border-radius: 50%;
  border: 1px solid rgba(143, 198, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(83, 167, 255, 0.03) inset;
}

.hero-ambient__ring--one {
  top: 2%;
  left: 4%;
  width: 88%;
  aspect-ratio: 1;
  animation: heroOrbitRotate 20s linear infinite;
}

.hero-ambient__ring--two {
  top: 15%;
  left: 20%;
  width: 56%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: heroOrbitRotateReverse 16s linear infinite;
}

.hero-ambient__grid {
  inset: 10% 12%;
  border-radius: 38px;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 78%);
  animation: heroGridFloat 10s ease-in-out infinite;
}

.hero-ambient__trail {
  border-radius: 999px;
  border: 1px solid rgba(141, 247, 236, 0.12);
  filter: drop-shadow(0 0 16px rgba(83, 167, 255, 0.12));
}

.hero-ambient__trail--one {
  top: 24%;
  left: 14%;
  width: 56%;
  height: 16%;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-8deg);
  animation: heroTrailFloatOne 9.8s ease-in-out infinite;
}

.hero-ambient__trail--two {
  right: 8%;
  bottom: 18%;
  width: 42%;
  height: 18%;
  border-right: 0;
  border-top: 0;
  transform: rotate(12deg);
  opacity: 0.64;
  animation: heroTrailFloatTwo 11.4s ease-in-out infinite;
}

.hero-ambient__pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8df7ec, #53a7ff);
  box-shadow: 0 0 0 0 rgba(83, 167, 255, 0.24);
  animation: heroPulseBeacon 3.2s ease-out infinite;
}

.hero-ambient__pulse--one {
  top: 20%;
  right: 18%;
}

.hero-ambient__pulse--two {
  bottom: 22%;
  left: 16%;
  animation-delay: 1.4s;
}

.hero-ambient__particle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8df7ec, #53a7ff);
  box-shadow: 0 0 14px rgba(83, 167, 255, 0.32);
}

.hero-ambient__particle--one {
  top: 16%;
  left: 22%;
  animation: heroParticleFloatOne 8.2s ease-in-out infinite;
}

.hero-ambient__particle--two {
  top: 44%;
  right: 12%;
  width: 10px;
  height: 10px;
  animation: heroParticleFloatTwo 9.4s ease-in-out infinite 0.8s;
}

.hero-ambient__particle--three {
  left: 30%;
  bottom: 18%;
  width: 6px;
  height: 6px;
  animation: heroParticleFloatThree 7.6s ease-in-out infinite 1.1s;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  min-width: 134px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(143, 198, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(83, 167, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(16, 29, 47, 0.9), rgba(8, 18, 31, 0.82));
  box-shadow:
    0 18px 32px rgba(4, 11, 22, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: none;
}

.hero-badge--one {
  top: -28px;
  right: -44px;
  animation: heroBadgeFloatOne 8.8s ease-in-out infinite;
}

.hero-badge--two {
  left: -1%;
  bottom: 11%;
  animation: heroBadgeFloatTwo 9.4s ease-in-out infinite;
}

.hero-badge--three {
  right: -2%;
  bottom: 24%;
  animation: heroBadgeFloatThree 8.2s ease-in-out infinite;
}

.hero-badge__label {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.1;
}

.hero__device {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.hero__device-glow,
.hero__device-orbit {
  position: absolute;
  pointer-events: none;
}

.hero__device-glow {
  inset: 10% 6% 2%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 24%, rgba(83, 167, 255, 0.22), transparent 28%),
    radial-gradient(circle at 76% 70%, rgba(56, 213, 197, 0.18), transparent 24%);
  filter: blur(28px);
  opacity: 0.86;
  animation: heroDeviceGlow 9.6s ease-in-out infinite;
}

.hero__device-orbit {
  border-radius: 50%;
  border: 1px solid rgba(83, 167, 255, 0.14);
}

.hero__device-orbit--one {
  top: 4%;
  left: 10%;
  width: 82%;
  aspect-ratio: 1;
  animation: heroDeviceOrbitOne 18s linear infinite;
}

.hero__device-orbit--two {
  top: 22%;
  left: 24%;
  width: 44%;
  aspect-ratio: 1;
  border-color: rgba(141, 247, 236, 0.14);
  border-style: dashed;
  animation: heroDeviceOrbitTwo 14s linear infinite;
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 31, 0.76);
  box-shadow: var(--shadow);
  transform: none;
  transform-style: preserve-3d;
  transition:
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.dashboard-window::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(83, 167, 255, 0.18);
  filter: blur(40px);
  pointer-events: none;
}

.dashboard-window::after {
  content: "";
  position: absolute;
  inset: -36% auto auto -20%;
  width: 58%;
  height: 140%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  opacity: 0.42;
  pointer-events: none;
  animation: heroSweep 7s ease-in-out infinite;
}

.dashboard-window__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1rem 1rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-window__dots {
  display: flex;
  gap: 0.4rem;
}

.dashboard-window__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-window__dots span:nth-child(1) {
  background: #ff7b8d;
  box-shadow: 0 0 0 0 rgba(255, 123, 141, 0.28);
  animation: heroDotPulse 4.2s ease-in-out infinite;
}

.dashboard-window__dots span:nth-child(2) {
  background: #ffd36b;
  box-shadow: 0 0 0 0 rgba(255, 211, 107, 0.22);
  animation: heroDotPulse 4.2s ease-in-out infinite 0.45s;
}

.dashboard-window__dots span:nth-child(3) {
  background: #7ff0e4;
  box-shadow: 0 0 0 0 rgba(127, 240, 228, 0.22);
  animation: heroDotPulse 4.2s ease-in-out infinite 0.9s;
}

.dashboard-window__label,
.dashboard-window__status {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.dashboard-window__status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(56, 213, 197, 0.12);
  color: #7ff0e4;
  overflow: hidden;
}

.dashboard-window__status::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(127, 240, 228, 0.36);
  animation: heroStatusPulse 2.8s ease-out infinite;
}

.dashboard-window__body {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.dashboard-window__body::before {
  content: "";
  position: absolute;
  inset: 12% 10% auto 24%;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(83, 167, 255, 0.16), rgba(83, 167, 255, 0));
  filter: blur(28px);
  opacity: 0.5;
  animation: heroBodyGlow 8.8s ease-in-out infinite;
  pointer-events: none;
}

.dashboard-window__scanner {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dashboard-window__scanner::before,
.dashboard-window__scanner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dashboard-window__scanner::before {
  left: 4%;
  right: 4%;
  height: 18%;
  top: -12%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(141, 247, 236, 0), rgba(141, 247, 236, 0.1), rgba(141, 247, 236, 0));
  filter: blur(12px);
  opacity: 0.45;
  animation: heroScannerVertical 6.4s ease-in-out infinite;
}

.dashboard-window__scanner::after {
  top: 10%;
  bottom: 8%;
  width: 22%;
  left: -18%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(83, 167, 255, 0), rgba(83, 167, 255, 0.08), rgba(141, 247, 236, 0));
  filter: blur(16px);
  opacity: 0.34;
  animation: heroScannerHorizontal 7.6s ease-in-out infinite;
}

.dashboard-search {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.dashboard-search::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 48%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(141, 247, 236, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(15deg);
  opacity: 0.55;
  animation: heroSearchSweep 6s ease-in-out infinite;
}

.dashboard-search__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 20px;
  color: var(--primary);
}

.dashboard-search__prompt {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 1.6em;
  animation: heroPromptGlow 5.6s ease-in-out infinite;
}

.dashboard-search__cursor {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 9px;
  height: 1.05em;
  border-radius: 999px;
  background: linear-gradient(180deg, #8df7ec, #53a7ff);
  animation: heroCursorBlink 1.1s steps(1, end) infinite;
}

.dashboard-insights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.dashboard-insight {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(143, 198, 255, 0.13);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(83, 167, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(10, 22, 38, 0.72);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(3, 11, 24, 0.16);
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.5, 0, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.dashboard-insight:hover,
.dashboard-insight:focus-within {
  transform: translateY(-2px);
  border-color: rgba(141, 247, 236, 0.32);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(3, 11, 24, 0.32),
    0 0 0 1px rgba(141, 247, 236, 0.12);
}

.dashboard-insight.is-active {
  border-color: rgba(141, 247, 236, 0.45);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 14px 28px rgba(3, 11, 24, 0.32),
    0 0 0 1px rgba(141, 247, 236, 0.22);
}

.dashboard-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(141, 247, 236, 0.1) 50%, transparent 82%);
  transform: translateX(-140%);
  opacity: 0.7;
  animation: heroTagSheen 7.8s ease-in-out infinite;
  pointer-events: none;
}

.dashboard-insight:nth-child(2)::after {
  animation-delay: 0.55s;
}

.dashboard-insight:nth-child(3)::after {
  animation-delay: 1.1s;
}

.dashboard-insight span {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-insight strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.18;
}

.dashboard-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.95rem;
  padding: 0.32rem;
  border: 1px solid rgba(143, 198, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 18, 31, 0.6);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.dashboard-tabs__indicator {
  position: absolute;
  z-index: 0;
  top: 0.32rem;
  bottom: 0.32rem;
  left: 0.32rem;
  width: calc((100% - 0.64rem - 0.7rem) / 3);
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(56, 213, 197, 0.32), rgba(83, 167, 255, 0.18) 60%, transparent 80%),
    linear-gradient(180deg, rgba(83, 167, 255, 0.22), rgba(56, 213, 197, 0.14));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(8, 18, 31, 0.32);
  transform: translateX(0%);
  transition: transform 380ms cubic-bezier(0.5, 0, 0.2, 1);
  pointer-events: none;
}

.dashboard-tabs[data-active="analysis"] .dashboard-tabs__indicator {
  transform: translateX(calc(100% + 0.35rem));
}

.dashboard-tabs[data-active="board"] .dashboard-tabs__indicator {
  transform: translateX(calc(200% + 0.7rem));
}

.dashboard-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.42rem 0.55rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.dashboard-tab:hover,
.dashboard-tab:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
  outline: none;
}

.dashboard-tab.is-active {
  color: #ffffff;
}

.dashboard-tab__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(143, 198, 255, 0.4);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.dashboard-tab.is-active .dashboard-tab__dot {
  background: #8df7ec;
  box-shadow: 0 0 0 3px rgba(141, 247, 236, 0.18);
  animation: heroDotPulse 2.6s ease-in-out infinite;
}

.dashboard-tab__label {
  line-height: 1;
}

.dashboard-window__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 0.9rem;
  /* Fixed height so the dashboard does not grow/shrink as tabs change.
     Sized to comfortably fit the tallest panel (Board, with 3 task items). */
  height: 360px;
}

@media (max-width: 640px) {
  .dashboard-window__grid {
    height: 480px;
  }
}

.dashboard-window__grid .dashboard-panel {
  grid-column: 1 / -1;
  grid-row: 1;
  display: none;
  align-content: start;
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 198, 255, 0.28) transparent;
  animation: dashboardPanelFade 420ms cubic-bezier(0.32, 0, 0.18, 1);
}

.dashboard-window__grid .dashboard-panel::-webkit-scrollbar {
  width: 4px;
}

.dashboard-window__grid .dashboard-panel::-webkit-scrollbar-thumb {
  background: rgba(143, 198, 255, 0.28);
  border-radius: 999px;
}

.dashboard-window__grid .dashboard-panel.is-active {
  display: grid;
}

.dashboard-window__grid .dashboard-panel[hidden] {
  display: none !important;
}

@keyframes dashboardPanelFade {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-panel,
  .dashboard-tabs__indicator,
  .dashboard-tab {
    animation: none !important;
    transition: none !important;
  }
}

.glass-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(10, 22, 38, 0.72);
  box-shadow: var(--shadow-soft);
}

.glass-card--accent {
  background:
    radial-gradient(circle at top right, rgba(56, 213, 197, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(10, 22, 38, 0.78);
  animation: heroAccentBreathe 7.2s ease-in-out infinite;
}

.glass-card--wide {
  gap: 0.8rem;
}

.card-label {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glass-card h2 {
  font-size: 1.15rem;
  line-height: 1.35;
}

.card-list {
  display: grid;
  gap: 0.65rem;
}

.card-list li,
.task-item p,
.progress-row span,
.mini-metrics span {
  color: var(--text-muted);
}

.card-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #72e4d6, #62b7ff);
  vertical-align: middle;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mini-metrics div {
  position: relative;
  overflow: hidden;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  animation: heroMetricFloat 7.6s ease-in-out infinite;
}

.mini-metrics div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 16%, rgba(83, 167, 255, 0.16), transparent 38%);
  opacity: 0.8;
  pointer-events: none;
}

.mini-metrics div:nth-child(2) {
  animation-delay: 0.8s;
}

.mini-metrics strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.progress-row {
  display: grid;
  gap: 0.5rem;
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38d5c5, #53a7ff);
  box-shadow: 0 0 18px rgba(83, 167, 255, 0.18);
  will-change: width, filter;
  transition: width 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-bar span.is-animated {
  animation: heroProgressGlow 4.8s ease-in-out infinite 1.35s;
}

.task-stream {
  display: grid;
  gap: 0.8rem;
}

/* Compact variant used inside the hero dashboard's Board panel so all 3 items
   fit within the fixed-height container without scrolling. */
.dashboard-window__grid .task-stream {
  gap: 0.55rem;
}

.dashboard-window__grid .task-item {
  padding: 0.7rem 0.85rem;
  gap: 0.7rem;
}

.dashboard-window__grid .task-item p {
  font-size: 0.84rem;
  line-height: 1.35;
}

.task-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.045);
  animation: heroTaskFloat 7.4s ease-in-out infinite;
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(0.5, 0, 0.2, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.task-item:hover,
.task-item:focus-visible {
  transform: translateX(3px);
  border-color: rgba(141, 247, 236, 0.28);
  background: rgba(141, 247, 236, 0.06);
  box-shadow: 0 10px 26px rgba(3, 11, 24, 0.28);
  outline: none;
}

.task-item::after {
  content: "";
  position: absolute;
  inset: -50% auto auto -25%;
  width: 44%;
  height: 190%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  opacity: 0;
  animation: heroTaskSheen 8.8s ease-in-out infinite;
}

.task-item:nth-child(2) {
  animation-delay: 0.8s;
}

.task-item:nth-child(2)::after {
  animation-delay: 0.75s;
}

.task-item:nth-child(3) {
  animation-delay: 1.55s;
}

.task-item:nth-child(3)::after {
  animation-delay: 1.5s;
}

.task-item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.task-item__tag {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.task-item__tag::after {
  content: "";
  position: absolute;
  inset: -65% auto auto -35%;
  width: 46%;
  height: 220%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0;
  animation: heroTagSheen 8.4s ease-in-out infinite;
}

.task-item__tag--blue {
  background: rgba(83, 167, 255, 0.16);
  color: #9ac9ff;
}

.task-item__tag--teal {
  background: rgba(56, 213, 197, 0.16);
  color: #8ef5ea;
}

.task-item__tag--amber {
  background: rgba(255, 191, 102, 0.16);
  color: #ffd293;
}

:root[data-theme="light"] .hero__highlights span,
:root[data-theme="light"] .stat-chip,
:root[data-theme="light"] .hero-badge,
:root[data-theme="light"] .dashboard-insight,
:root[data-theme="light"] .mini-metrics div,
:root[data-theme="light"] .task-item {
  border-color: rgba(18, 54, 93, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.82)),
    rgba(255, 255, 255, 0.84);
}

:root[data-theme="light"] .hero-ambient__ring {
  border-color: rgba(47, 125, 255, 0.16);
}

:root[data-theme="light"] .hero-ambient__trail {
  border-color: rgba(12, 174, 154, 0.12);
}

:root[data-theme="light"] .hero-ambient__grid {
  background-image:
    linear-gradient(rgba(18, 54, 93, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 54, 93, 0.07) 1px, transparent 1px);
}

:root[data-theme="light"] .hero::before {
  background: radial-gradient(circle, rgba(47, 125, 255, 0.14), rgba(47, 125, 255, 0.02) 52%, transparent 72%);
  filter: blur(44px);
  opacity: 0.34;
}

:root[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(12, 174, 154, 0.12), rgba(12, 174, 154, 0.02) 48%, transparent 72%);
  filter: blur(38px);
  opacity: 0.24;
}

:root[data-theme="light"] .hero__content h1 {
  color: #10233a;
  text-shadow: 0 14px 34px rgba(47, 125, 255, 0.08);
}

:root[data-theme="light"] .hero__content h1::after {
  background: linear-gradient(90deg, rgba(47, 125, 255, 0), rgba(47, 125, 255, 0.14), rgba(12, 174, 154, 0.08), rgba(47, 125, 255, 0));
  filter: blur(12px);
  opacity: 0.18;
}

:root[data-theme="light"] .hero__visual::before {
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(47, 125, 255, 0.1), transparent 24%),
    radial-gradient(circle at 74% 32%, rgba(12, 174, 154, 0.08), transparent 20%);
  filter: blur(18px);
  opacity: 0.56;
}

:root[data-theme="light"] .hero__visual::after {
  background: radial-gradient(circle, rgba(47, 125, 255, 0.12), rgba(47, 125, 255, 0));
  opacity: 0.26;
}


:root[data-theme="light"] .hero__device-orbit {
  border-color: rgba(47, 125, 255, 0.12);
}

:root[data-theme="light"] .hero__device-orbit--two {
  border-color: rgba(12, 174, 154, 0.12);
}

:root[data-theme="light"] .hero__device-glow {
  background:
    radial-gradient(circle at 30% 24%, rgba(47, 125, 255, 0.12), transparent 26%),
    radial-gradient(circle at 76% 70%, rgba(12, 174, 154, 0.09), transparent 22%);
  filter: blur(22px);
  opacity: 0.48;
}

:root[data-theme="light"] .dashboard-window__body::before {
  background: radial-gradient(circle, rgba(47, 125, 255, 0.08), rgba(47, 125, 255, 0));
  opacity: 0.62;
}

:root[data-theme="light"] .dashboard-window__scanner::before {
  background: linear-gradient(180deg, rgba(12, 174, 154, 0), rgba(12, 174, 154, 0.05), rgba(12, 174, 154, 0));
  opacity: 0.6;
}

:root[data-theme="light"] .dashboard-window__scanner::after {
  background: linear-gradient(90deg, rgba(47, 125, 255, 0), rgba(47, 125, 255, 0.05), rgba(12, 174, 154, 0.06), rgba(47, 125, 255, 0));
  opacity: 0.5;
}

:root[data-theme="light"] .dashboard-window::after,
:root[data-theme="light"] .dashboard-search::after,
:root[data-theme="light"] .task-item::after,
:root[data-theme="light"] .stat-chip::after,
:root[data-theme="light"] .hero__highlights span::before,
:root[data-theme="light"] .hero__actions .btn::after,
:root[data-theme="light"] .task-item__tag::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(47, 125, 255, 0.1), rgba(255, 255, 255, 0));
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  :root[data-theme="light"] .hero__content h1 {
    background: linear-gradient(180deg, #10233a 0%, #18385a 62%, #2b7dc9 100%);
    background-size: 100% 100%;
    background-position: 0 0;
    animation: none;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.trust-strip {
  padding-top: 32px;
}

.trust-strip__items {
  display: grid;
  gap: 1rem;
}

.trust-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  text-align: center;
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(83, 167, 255, 0.12);
  color: #9bcaff;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.trust-item__icon svg {
  width: 22px;
}

.trust-item,
.feature-card,
.step-card,
.use-case-card,
.plan-card,
.mini-plan,
.faq-item,
.comparison-table,
.infographic-diagram,
.infographic-card {
  transform:
    perspective(1200px)
    rotateX(var(--card-rotate-x, 0deg))
    rotateY(var(--card-rotate-y, 0deg))
    translate3d(0, var(--card-lift, 0), 0);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    box-shadow 280ms ease,
    background-color 280ms ease;
}

.trust-item::after,
.feature-card::after,
.step-card::after,
.use-case-card::after,
.plan-card::after,
.mini-plan::after,
.faq-item::after,
.comparison-table::after,
.infographic-diagram::after,
.infographic-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      circle at var(--card-glow-x, 50%) var(--card-glow-y, 50%),
      rgba(83, 167, 255, 0.18),
      transparent 26%
    ),
    linear-gradient(
      120deg,
      transparent 28%,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(83, 167, 255, 0.08) 56%,
      transparent 72%
    );
  opacity: 0;
  transform: translateX(-55%) rotate(10deg);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-grid,
.steps-grid,
.use-case-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.infographic__grid,
.infographic__stack {
  display: grid;
  gap: 1rem;
}

.feature-card,
.step-card,
.use-case-card,
.plan-card,
.faq-item,
.cta-panel,
.comparison-table,
.mini-plan,
.infographic-diagram,
.infographic-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 19, 33, 0.82);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card,
.use-case-card,
.plan-card,
.mini-plan,
.infographic-diagram,
.infographic-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.3rem;
  border-radius: 26px;
}

.feature-card::before,
.step-card::before,
.use-case-card::before,
.plan-card::before,
.mini-plan::before,
.infographic-diagram::before,
.infographic-card::before {
  content: "";
  position: absolute;
  inset: auto auto -45% -12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(83, 167, 255, 0.12);
  filter: blur(36px);
  pointer-events: none;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infographic-diagram,
.infographic-card {
  isolation: isolate;
}

.infographic-diagram {
  display: grid;
  gap: 1.1rem;
  padding: 1.4rem;
}

.infographic-diagram__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.infographic-diagram__header h3,
.infographic-card h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.infographic-diagram__status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(143, 247, 236, 0.16);
  border-radius: 999px;
  background: rgba(56, 213, 197, 0.08);
  color: #8df7ec;
  font-size: 0.8rem;
  font-weight: 700;
}

.infographic-diagram__stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: clamp(320px, 42vw, 430px);
}

.infographic-diagram__stage::before {
  content: "";
  position: absolute;
  inset: 10% 8% 12%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(83, 167, 255, 0.12), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
  opacity: 0.34;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 88%);
  pointer-events: none;
}

.infographic-diagram__stage::after {
  content: "";
  position: absolute;
  inset: 8% 16% 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(141, 247, 236, 0.16), transparent);
  filter: blur(10px);
  opacity: 0.5;
  transform: translateX(-60%);
  animation: workflowScanSweep 7.8s linear infinite;
  pointer-events: none;
}

.workflow-vector {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  padding: 0.35rem 0;
}

.workflow-vector__flow {
  animation: workflowDash 10s linear infinite;
}

.workflow-vector__loop {
  animation: workflowDrift 14s linear infinite;
}

.workflow-vector__node {
  filter: drop-shadow(0 12px 22px rgba(5, 14, 25, 0.28));
}

.workflow-vector__node--one {
  animation: vectorNodeFloat 6.8s ease-in-out infinite;
}

.workflow-vector__node--two {
  animation: vectorNodeFloat 7.4s ease-in-out infinite 0.4s;
}

.workflow-vector__node--three {
  animation: vectorNodeFloat 6.2s ease-in-out infinite 0.8s;
}

.workflow-vector__node--four {
  animation: vectorNodeFloat 7.1s ease-in-out infinite 1.2s;
}

.workflow-vector__label rect {
  stroke: rgba(83, 167, 255, 0.16);
  stroke-width: 1.2;
}

.workflow-vector__label text {
  fill: #eaf4ff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.workflow-core,
.workflow-float,
.workflow-activity,
.workflow-ping {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.workflow-core {
  left: 50%;
  top: 54%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.workflow-core__ring,
.workflow-core__pulse {
  position: absolute;
  border-radius: 50%;
}

.workflow-core__ring {
  inset: 0;
  border: 1px solid rgba(83, 167, 255, 0.18);
}

.workflow-core__ring--outer {
  animation: workflowRingOrbit 10s linear infinite;
}

.workflow-core__ring--inner {
  inset: 16px;
  border-color: rgba(141, 247, 236, 0.2);
  animation: workflowRingOrbitReverse 8s linear infinite;
}

.workflow-core__pulse {
  inset: 26px;
  border: 1px solid rgba(141, 247, 236, 0.32);
  animation: workflowPulseRing 3.6s ease-out infinite;
}

.workflow-core__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8df7ec;
  box-shadow:
    0 0 0 8px rgba(141, 247, 236, 0.08),
    0 0 20px rgba(141, 247, 236, 0.5);
  animation: workflowCoreBeat 2.8s ease-in-out infinite;
}

.workflow-core__label {
  position: absolute;
  bottom: 14px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 27, 45, 0.9);
  border: 1px solid rgba(83, 167, 255, 0.14);
  color: #eaf4ff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-float {
  min-width: 150px;
  max-width: 168px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(83, 167, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 21, 36, 0.9);
  box-shadow:
    0 18px 34px rgba(3, 10, 20, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.5rem;
}

.workflow-float--left {
  left: 14%;
  top: 34%;
  animation: workflowPanelFloat 7.2s ease-in-out infinite;
}

.workflow-float--right {
  right: 10%;
  top: 23%;
  animation: workflowPanelFloat 7.6s ease-in-out infinite 0.8s;
}

.workflow-float__eyebrow {
  color: #8df7ec;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-float strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.workflow-float__lines {
  display: grid;
  gap: 0.32rem;
}

.workflow-float__lines i {
  position: relative;
  display: block;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-float__lines i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #53a7ff, #8df7ec);
  border-radius: inherit;
  transform-origin: left center;
  animation: workflowLineFlow 4.8s ease-in-out infinite;
}

.workflow-float__lines i:nth-child(2)::after {
  animation-delay: 0.35s;
}

.workflow-float__lines i:nth-child(3)::after {
  animation-delay: 0.7s;
}

.workflow-activity {
  left: 16%;
  right: 16%;
  bottom: 8%;
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(83, 167, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(8, 19, 33, 0.9);
  box-shadow:
    0 22px 38px rgba(4, 12, 24, 0.26),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  animation: workflowPanelGlow 6.4s ease-in-out infinite;
}

.workflow-activity__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.81rem;
}

.workflow-activity__row div {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-activity__row i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #53a7ff, #8df7ec);
  box-shadow: 0 0 18px rgba(83, 167, 255, 0.18);
  will-change: width, filter;
  transition: width 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-activity__row i.is-animated {
  animation: workflowBarPulse 4.6s ease-in-out infinite 1.4s;
}

.workflow-activity__row:nth-child(2) i {
  animation-delay: 0.6s;
}

.workflow-activity__row strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.workflow-ping {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #53a7ff;
  box-shadow: 0 0 0 8px rgba(83, 167, 255, 0.08);
  animation: workflowPingPulse 3.2s ease-in-out infinite;
}

.workflow-ping--one {
  left: 23%;
  top: 58%;
}

.workflow-ping--two {
  right: 24%;
  top: 50%;
  background: #8df7ec;
  box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.08);
  animation-delay: 0.8s;
}

.workflow-ping--three {
  left: 60%;
  bottom: 22%;
  animation-delay: 1.6s;
}

.infographic-diagram__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.infographic-diagram__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot--blue {
  background: #53a7ff;
}

.legend-dot--teal {
  background: #8df7ec;
}

.legend-dot--dark {
  background: #284c72;
}

.infographic-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.infographic-meter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.infographic-meter svg {
  width: 126px;
  height: 126px;
}

.infographic-meter__track,
.infographic-meter__value {
  fill: none;
  stroke-width: 9;
}

.infographic-meter__track {
  stroke: rgba(255, 255, 255, 0.08);
}

.infographic-meter__value {
  stroke: #8df7ec;
  stroke-linecap: round;
  stroke-dasharray: 0 264;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  filter: drop-shadow(0 0 10px rgba(141, 247, 236, 0.2));
  transition: stroke-dasharray 1.6s cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.infographic-meter__value.is-animated {
  filter: drop-shadow(0 0 16px rgba(141, 247, 236, 0.34));
}

.infographic-meter__copy {
  display: grid;
  gap: 0.35rem;
  max-width: 20rem;
}

.infographic-meter__copy strong {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1;
}

.infographic-meter__copy span {
  color: var(--text-muted);
}

.infographic-bars {
  display: grid;
  gap: 0.9rem;
}

.infographic-bars__row {
  display: grid;
  grid-template-columns: minmax(88px, 1fr) minmax(0, 1.7fr) auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.infographic-bars__row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.infographic-bars__row i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #53a7ff, #8df7ec);
  box-shadow: 0 0 18px rgba(83, 167, 255, 0.18);
  will-change: width, filter;
  transition: width 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.infographic-bars__row i.is-animated {
  animation: workflowBarPulse 4.6s ease-in-out infinite 1.4s;
}

.infographic-bars__row strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.infographic-timeline {
  display: grid;
  gap: 1rem;
}

.infographic-timeline__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.infographic-timeline__item > span {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 4px solid rgba(83, 167, 255, 0.2);
  background: #8df7ec;
  box-shadow: 0 0 0 5px rgba(141, 247, 236, 0.08);
}

.infographic-timeline__item:not(:last-child) > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 2px;
  height: calc(100% + 34px);
  background: linear-gradient(180deg, rgba(83, 167, 255, 0.45), rgba(141, 247, 236, 0.12));
  transform: translateX(-50%);
}

.infographic-timeline__item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.infographic-timeline__item p {
  color: var(--text-muted);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(83, 167, 255, 0.12);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.feature-card h3,
.use-case-card h3,
.step-card h3,
.plan-card h3,
.cta-panel h2,
.mini-plan__name {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.feature-card h3,
.use-case-card h3 {
  font-size: 1.22rem;
  line-height: 1.3;
}

.feature-card p,
.use-case-card p,
.step-card p,
.plan-card__caption,
.plan-card__list,
.faq-item p,
.footer__brand p,
.form-message,
.modal__header p,
.mini-plan__caption {
  color: var(--text-muted);
}

.step-card {
  display: grid;
  gap: 0.8rem;
}

.step-card__number {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(56, 213, 197, 0.12);
  color: #82f2e6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms ease,
    color 280ms ease;
}

.use-case-card {
  display: grid;
  gap: 0.95rem;
}

.use-case-card__tag,
.plan-card__label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms ease;
}

.billing-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.35rem;
  margin-bottom: 1.6rem;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.billing-switch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 140px;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 700;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.billing-switch__button span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(56, 213, 197, 0.16);
  color: #8ff6eb;
  font-size: 0.74rem;
  font-weight: 800;
}

.billing-switch__button.is-active {
  background: rgba(255, 255, 255, 0.11);
  color: var(--text);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-card--featured {
  border-color: rgba(83, 167, 255, 0.35);
  box-shadow:
    0 26px 60px rgba(15, 35, 62, 0.36),
    0 0 0 1px rgba(83, 167, 255, 0.14) inset;
}

.plan-card__badge {
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 213, 197, 0.16), rgba(83, 167, 255, 0.18));
  color: #bafdf6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-family: var(--font-heading);
}

.plan-card__currency {
  font-size: 1.4rem;
}

.plan-card__amount {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms ease;
}

.plan-card__suffix {
  color: var(--text-muted);
  font-size: 1rem;
}

.plan-card__list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.plan-card__list li {
  position: relative;
  padding-left: 1.4rem;
}

.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #72e4d6, #62b7ff);
}

.comparison-table {
  margin-top: 1.5rem;
  padding: 0.8rem;
  border-radius: 28px;
}

.comparison-table__scroll {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.comparison-table thead th {
  color: var(--text);
}

.comparison-table tbody th,
.comparison-table td {
  color: var(--text-muted);
}

.faq__grid {
  display: grid;
  gap: 1.4rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.25rem 1.2rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  font-size: 1.4rem;
  transform: translateY(-50%);
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
}

.cta-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(83, 167, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 31, 0.82);
}

.cta-panel h2 {
  font-size: 2.3rem;
  line-height: 1.05;
}

.cta-panel p {
  color: var(--text-muted);
  max-width: 54ch;
}

.email-form,
.modal-form {
  display: grid;
  gap: 0.95rem;
}

.email-form label,
.modal-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.email-form input,
.email-form select,
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.modal-form textarea {
  min-height: 120px;
  resize: vertical;
}

.email-form input::placeholder,
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: rgba(229, 238, 250, 0.42);
}

.email-form input:focus,
.email-form select:focus,
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: rgba(83, 167, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(83, 167, 255, 0.12);
  outline: none;
}

.form-message {
  min-height: 1.45rem;
  font-size: 0.92rem;
}

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

.form-message.is-success {
  color: #abfff4;
}

.site-footer {
  padding: 1rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  gap: 1.2rem;
}

.footer__brand {
  display: grid;
  gap: 0.8rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  color: var(--text-muted);
}

.footer__copy {
  color: var(--text-subtle);
  font-size: 0.94rem;
}

.floating-cta,
.back-to-top {
  position: fixed;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.floating-cta {
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  min-height: 56px;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56, 213, 197, 0.94), rgba(83, 167, 255, 0.95));
  color: #07111f;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(8, 18, 30, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta.is-visible:hover,
.floating-cta.is-visible:focus-visible {
  transform: translateY(-2px);
}

.back-to-top {
  right: 16px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(10, 22, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

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

.back-to-top svg {
  width: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding:
    max(10px, env(safe-area-inset-top))
    16px
    max(10px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.72);
  backdrop-filter: blur(12px);
}

.modal__dialog {
  position: relative;
  display: grid;
  align-content: start;
  width: min(100%, 980px);
  max-width: calc(100vw - 32px);
  max-height: min(860px, calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(8, 16, 28, 0.96);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  scrollbar-gutter: stable;
}

.modal__dialog--success {
  width: min(100%, 560px);
}

.modal__close {
  position: sticky;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 14px 14px -62px 0;
  justify-self: end;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modal__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.modal__close span:first-child {
  transform: rotate(45deg);
}

.modal__close span:last-child {
  transform: rotate(-45deg);
}

.modal__header {
  padding: 1.4rem 4.9rem 1rem 1.3rem;
}

.modal__header h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.modal__tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0 1.3rem 1rem;
}

.modal__tab {
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 700;
}

.modal__tab.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.modal__body {
  padding: 0 1.3rem 1.3rem;
  min-width: 0;
  overflow-x: hidden;
}

.modal__panel {
  display: none;
  min-width: 0;
  overflow-x: hidden;
}

.modal__panel.is-active {
  display: block;
}

.modal-form {
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.modal-form__grid {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  max-width: 100%;
}

.modal-form__grid > *,
.modal-form label,
.modal-pricing > * {
  min-width: 0;
}

.billing-switch--compact {
  margin-bottom: 1rem;
}

.modal-pricing {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  max-width: 100%;
}

.modal__header p,
.modal-form label,
.form-message {
  overflow-wrap: anywhere;
}

.mini-plan {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 22px;
}

.mini-plan--featured {
  border-color: rgba(83, 167, 255, 0.34);
}

.mini-plan__name {
  font-size: 1.1rem;
}

.mini-plan__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: -0.05em;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms ease;
}

.mini-plan__price span:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.success-state {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.6rem 1.4rem 1.9rem;
  text-align: center;
}

.success-state__icon {
  width: 88px;
}

.success-state h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.success-state p {
  max-width: 34ch;
  color: var(--text-muted);
}

.success-state__actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (hover: hover) and (pointer: fine) {
  .trust-item:hover,
  .feature-card:hover,
  .step-card:hover,
  .use-case-card:hover,
  .plan-card:hover,
  .mini-plan:hover,
  .faq-item:hover,
  .comparison-table:hover,
  .infographic-diagram:hover,
  .infographic-card:hover {
    --card-lift: -10px;
    border-color: rgba(83, 167, 255, 0.24);
    box-shadow:
      0 28px 60px rgba(6, 18, 33, 0.34),
      0 0 0 1px rgba(83, 167, 255, 0.08) inset;
  }

  .trust-item:hover::after,
  .feature-card:hover::after,
  .step-card:hover::after,
  .use-case-card:hover::after,
  .plan-card:hover::after,
  .mini-plan:hover::after,
  .faq-item:hover::after,
  .comparison-table:hover::after,
  .infographic-diagram:hover::after,
  .infographic-card:hover::after {
    opacity: 1;
    transform: translateX(55%) rotate(10deg);
  }

  .trust-item:hover .trust-item__icon {
    transform: translate3d(0, -3px, 18px) rotate(-6deg);
    background: rgba(83, 167, 255, 0.18);
  }

  .feature-card:hover .feature-card__icon {
    transform: translate3d(0, -4px, 26px) rotate(-6deg) scale(1.05);
    background: rgba(83, 167, 255, 0.18);
    box-shadow: 0 14px 30px rgba(83, 167, 255, 0.18);
  }

  .step-card:hover .step-card__number {
    transform: translate3d(0, -3px, 20px);
    background: rgba(56, 213, 197, 0.18);
  }

  .use-case-card:hover .use-case-card__tag,
  .plan-card:hover .plan-card__label {
    transform: translate3d(0, -2px, 18px);
  }

  .plan-card:hover .plan-card__badge {
    transform: translate3d(0, -2px, 18px);
    box-shadow: 0 12px 24px rgba(83, 167, 255, 0.16);
  }

  .plan-card:hover .plan-card__amount,
  .mini-plan:hover .mini-plan__price {
    transform: translate3d(0, -3px, 22px);
    color: #ffffff;
  }
}

@media (min-width: 640px) {
  .infographic-bars__row {
    grid-template-columns: minmax(110px, 1fr) minmax(0, 2fr) auto;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .feature-grid,
  .steps-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-panel {
    padding: 1.8rem;
  }

  .modal-form__grid,
  .email-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .email-form label:last-of-type,
  .email-form button,
  .email-form .form-message,
  .modal-form textarea,
  .modal-form button,
  .modal-form .form-message {
    grid-column: 1 / -1;
  }

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

  .success-state__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .dashboard-insights {
    grid-template-columns: 1fr;
  }

  .dashboard-insight {
    padding: 0.68rem 0.75rem;
  }
}

@media (max-width: 1023px) {
  .hero__visual {
    order: -1;
    padding-inline: 0;
  }

  .hero__content {
    order: 1;
  }

  .hero__device-orbit {
    display: none;
  }

  .hero__device-glow {
    inset: 16% 8% 8%;
  }

  .hero-badge {
    display: none;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 112px 0;
  }

  .hero {
    padding-top: 60px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    padding: 0.35rem;
    border: 1px solid rgba(143, 198, 255, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
      rgba(255, 255, 255, 0.03);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.06),
      0 10px 24px rgba(2, 9, 18, 0.16);
  }

  :root[data-theme="light"] .desktop-nav {
    border-color: rgba(18, 54, 93, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.84)),
      rgba(255, 255, 255, 0.8);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.92),
      0 10px 24px rgba(38, 82, 140, 0.1);
  }

  .desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--text-muted);
    font-weight: 600;
    transition:
      color var(--transition),
      background-color var(--transition),
      transform var(--transition);
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(83, 167, 255, 0.16), #8df7ec, rgba(83, 167, 255, 0.16));
    transform: scaleX(0.35);
    opacity: 0;
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
  }

  :root[data-theme="light"] .desktop-nav a:hover,
  :root[data-theme="light"] .desktop-nav a:focus-visible {
    background: rgba(47, 125, 255, 0.08);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header__utilities {
    margin-left: 0;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 1rem;
    padding: 0.35rem;
    border: 1px solid rgba(143, 198, 255, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
      rgba(255, 255, 255, 0.025);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.05),
      0 10px 24px rgba(2, 9, 18, 0.14);
  }

  :root[data-theme="light"] .header__actions {
    border-color: rgba(18, 54, 93, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.84)),
      rgba(255, 255, 255, 0.8);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.92),
      0 10px 24px rgba(38, 82, 140, 0.1);
  }

  .btn--header {
    min-height: 44px;
    padding-inline: 1rem;
  }

  .header__actions .btn {
    min-height: 44px;
  }

  .header__actions .btn--ghost {
    background: transparent;
    border-color: transparent;
  }

  .header__actions .btn--ghost:hover,
  .header__actions .btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    gap: 2rem;
  }

  .hero__device {
    margin-top: 2.7rem;
    animation: float-card 8s ease-in-out infinite;
  }

  .trust-strip__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .use-case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .infographic__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    align-items: stretch;
  }

  .faq__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1.1fr) auto auto;
    align-items: center;
  }

  .back-to-top {
    bottom: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .hero__device {
    margin-top: 3.2rem;
  }

  .hero-badge--one {
    top: -36px;
    right: -58px;
  }
}

@media (min-width: 1280px) {
  .floating-cta {
    top: 50%;
    right: 22px;
    left: auto;
    bottom: auto;
    width: 60px;
    min-height: 180px;
    padding: 1rem 0.8rem;
    border-radius: 20px;
    transform: translateY(calc(-50% + 8px));
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .floating-cta.is-visible {
    transform: translateY(-50%);
  }

  .floating-cta.is-visible:hover,
  .floating-cta.is-visible:focus-visible {
    transform: translateY(calc(-50% - 2px));
  }
}

@media (max-width: 1279px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .modal__dialog {
    border-radius: 28px;
  }
}

@media (max-width: 639px) {
  .header__inner {
    gap: 0.75rem;
  }

  .header__utilities {
    gap: 0;
  }

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

  .language-control--mobile {
    display: inline-flex;
    min-width: 84px;
    padding-left: 0.62rem;
    padding-right: 1.75rem;
  }

  .language-control__value {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .theme-toggle {
    width: 44px;
    min-height: 44px;
  }

  .logo {
    max-width: calc(100% - 56px);
  }

  .logo__name {
    font-size: 0.92rem;
  }

  .logo__tagline {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .billing-switch__button span {
    display: none;
  }

  .comparison-table {
    padding: 0.35rem;
    border-radius: 22px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.75rem;
  }

  .trust-item {
    justify-items: start;
    text-align: left;
  }

  .infographic-diagram,
  .infographic-card {
    padding: 1.1rem;
  }

  .workflow-float {
    min-width: 130px;
    max-width: 144px;
    padding: 0.68rem 0.72rem;
  }

  .workflow-float--left {
    left: 10%;
    top: 36%;
  }

  .workflow-float--right {
    right: 7%;
    top: 25%;
  }

  .workflow-core {
    width: 94px;
    height: 94px;
    top: 56%;
  }

  .workflow-core__label {
    bottom: 10px;
    font-size: 0.68rem;
  }

  .workflow-activity {
    left: 10%;
    right: 10%;
    bottom: 10%;
    padding: 0.78rem 0.82rem;
  }

  .workflow-activity__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .workflow-activity__row strong {
    justify-self: start;
  }

  .workflow-vector {
    margin-left: -0.4rem;
    width: calc(100% + 0.8rem);
  }

  .infographic-meter {
    flex-direction: column;
    align-items: flex-start;
  }

  .infographic-bars__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .infographic-bars__row strong {
    justify-self: start;
  }
}


@media (max-width: 767px) {
  .dashboard-window__grid .glass-card:nth-child(1) {
    order: 2;
  }

  .dashboard-window__grid .glass-card:nth-child(2) {
    order: 1;
  }

  .dashboard-window__grid .glass-card--wide {
    order: 3;
  }
}

@media (max-width: 479px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }


  .hero-ambient__trail,
  .hero-ambient__particle--two {
    display: none;
  }

  .workflow-float--right {
    display: none;
  }

  .workflow-float--left {
    left: 8%;
    top: 38%;
  }

  .workflow-activity {
    left: 8%;
    right: 8%;
    bottom: 11%;
  }

  .workflow-ping--three {
    left: 54%;
    bottom: 24%;
  }

  .hero__content h1 {
    max-width: 11.3ch;
  }

  .section {
    padding: 72px 0;
  }

  .dashboard-window__label {
    font-size: 0.78rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-search {
    font-size: 0.88rem;
  }

  .task-item {
    flex-direction: column;
  }

  /* Keep the hero dashboard's task items in a row to fit 3 items in
     the fixed-height Board panel without scrolling. */
  .dashboard-window__grid .task-item {
    flex-direction: row;
    align-items: center;
  }

  .modal {
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
    place-items: end stretch;
  }

  .modal__header,
  .modal__tabs,
  .modal__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .modal__dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 10px - env(safe-area-inset-bottom));
    border-radius: 26px;
  }

  .modal__header {
    padding-top: 1.05rem;
    padding-right: 4.1rem;
  }

  .modal__header h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .modal__header p {
    font-size: 0.95rem;
  }

  .modal__tabs {
    gap: 0.45rem;
  }

  .modal__tab {
    min-height: 46px;
    padding-inline: 0.5rem;
    font-size: 0.92rem;
  }

  .modal__close {
    top: 10px;
    width: 46px;
    height: 46px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: -56px;
  }

  .modal__body {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .modal-form {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .modal-form__grid,
  .modal-pricing {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-form label {
    font-size: 0.93rem;
  }

  .modal-form input,
  .modal-form select,
  .modal-form textarea {
    min-height: 50px;
    padding-inline: 0.9rem;
  }

  .modal-form textarea {
    min-height: 112px;
  }
}

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

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

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

  .workflow-vector__flow,
  .workflow-vector__loop,
  .workflow-vector__node--one,
  .workflow-vector__node--two,
  .workflow-vector__node--three,
  .workflow-vector__node--four,
  .hero__content h1,
  .hero__content h1::after,
  .hero__actions .btn--primary,
  .hero__actions .btn::after,
  .hero-ambient__trail--one,
  .hero-ambient__trail--two,
  .hero-ambient__particle--one,
  .hero-ambient__particle--two,
  .hero-ambient__particle--three,
  .hero__device-glow,
  .hero__device-orbit--one,
  .hero__device-orbit--two,
  .dashboard-window__body::before,
  .dashboard-window__scanner::before,
  .dashboard-window__scanner::after,
  .mini-metrics div,
  .task-item__tag::after {
    animation: none !important;
  }
}

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

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

@keyframes heroAuroraOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-12px, 16px, 0) scale(1.08);
  }
}

@keyframes heroAuroraTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -10px, 0) scale(1.06);
  }
}

@keyframes heroEyebrowGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(10px);
  }
}

@keyframes heroPillFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes heroPillSheen {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(18deg);
  }

  18%,
  36% {
    opacity: 1;
    transform: translateX(160%) rotate(18deg);
  }
}

@keyframes heroStatFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes heroOrbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroOrbitRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes heroGridFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.24;
  }

  50% {
    transform: translate3d(8px, -10px, 0);
    opacity: 0.38;
  }
}

@keyframes heroPulseBeacon {
  0% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(83, 167, 255, 0.24);
  }

  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 16px rgba(83, 167, 255, 0);
  }

  100% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(83, 167, 255, 0);
  }
}

@keyframes heroBadgeFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes heroBadgeFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -8px, 0);
  }
}

@keyframes heroBadgeFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, 10px, 0);
  }
}

@keyframes heroSweep {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(14deg);
  }

  18%,
  34% {
    opacity: 0.42;
    transform: translateX(170%) rotate(14deg);
  }
}

@keyframes heroDotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  18% {
    transform: scale(1.18);
  }

  34% {
    transform: scale(1);
  }
}

@keyframes heroStatusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 240, 228, 0.34);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(127, 240, 228, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(127, 240, 228, 0);
  }
}

@keyframes heroSearchSweep {
  0%,
  68%,
  100% {
    transform: translateX(0) rotate(15deg);
    opacity: 0;
  }

  18%,
  34% {
    transform: translateX(190%) rotate(15deg);
    opacity: 0.55;
  }
}

@keyframes heroPromptGlow {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroCursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0.12;
  }
}

@keyframes heroAccentBreathe {
  0%,
  100% {
    box-shadow: var(--shadow-soft);
  }

  50% {
    box-shadow:
      0 24px 48px rgba(3, 11, 24, 0.28),
      0 0 0 1px rgba(141, 247, 236, 0.06) inset;
  }
}

@keyframes heroProgressLoad {
  from {
    transform: scaleX(0.2);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes heroProgressGlow {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.12);
  }
}

@keyframes heroTaskFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes heroTaskSheen {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(16deg);
  }

  16%,
  32% {
    opacity: 1;
    transform: translateX(180%) rotate(16deg);
  }
}

@keyframes heroTitleShimmer {
  0%,
  100% {
    background-position: 0 0, 140% 0;
  }

  45%,
  55% {
    background-position: 0 0, 24% 0;
  }
}

@keyframes heroTitleSweep {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.28;
  }

  50% {
    transform: translateX(28px);
    opacity: 0.56;
  }
}

@keyframes heroSignalTrace {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes heroSignalDotOne {
  0% {
    left: 0%;
  }

  100% {
    left: calc(100% - 10px);
  }
}

@keyframes heroSignalDotTwo {
  0% {
    left: calc(100% - 10px);
  }

  100% {
    left: 0%;
  }
}

@keyframes heroButtonFloat {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(83, 167, 255, 0.18);
  }

  50% {
    box-shadow: 0 22px 42px rgba(83, 167, 255, 0.28);
  }
}

@keyframes heroButtonSheen {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(16deg);
  }

  16%,
  34% {
    opacity: 1;
    transform: translateX(190%) rotate(16deg);
  }
}

@keyframes heroTrailFloatOne {
  0%,
  100% {
    transform: rotate(-8deg) translate3d(0, 0, 0);
    opacity: 0.36;
  }

  50% {
    transform: rotate(-2deg) translate3d(12px, -8px, 0);
    opacity: 0.62;
  }
}

@keyframes heroTrailFloatTwo {
  0%,
  100% {
    transform: rotate(12deg) translate3d(0, 0, 0);
    opacity: 0.34;
  }

  50% {
    transform: rotate(6deg) translate3d(-14px, 10px, 0);
    opacity: 0.58;
  }
}

@keyframes heroParticleFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 12px, 0) scale(1.2);
  }
}

@keyframes heroParticleFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-14px, -16px, 0) scale(1.18);
  }
}

@keyframes heroParticleFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -10px, 0) scale(1.16);
  }
}

@keyframes heroDeviceGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

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

@keyframes heroDeviceOrbitOne {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroDeviceOrbitTwo {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes heroBodyGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.36;
  }

  50% {
    transform: translate3d(14px, 8px, 0) scale(1.08);
    opacity: 0.62;
  }
}

@keyframes heroScannerVertical {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(520%);
    opacity: 0;
  }
}

@keyframes heroScannerHorizontal {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  22%,
  68% {
    opacity: 0.34;
  }

  100% {
    transform: translateX(560%);
    opacity: 0;
  }
}

@keyframes heroMetricFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes heroTagSheen {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(18deg);
  }

  18%,
  34% {
    opacity: 1;
    transform: translateX(180%) rotate(18deg);
  }
}

@keyframes workflowDash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -120;
  }
}

@keyframes workflowDrift {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 140;
  }
}

@keyframes vectorNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes workflowScanSweep {
  0% {
    transform: translateX(-68%);
  }

  100% {
    transform: translateX(68%);
  }
}

@keyframes workflowRingOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes workflowRingOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes workflowPulseRing {
  0% {
    transform: scale(0.74);
    opacity: 0.1;
  }

  45% {
    opacity: 0.34;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes workflowCoreBeat {
  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.16);
  }

  60% {
    transform: scale(0.92);
  }
}

@keyframes workflowPanelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes workflowPanelGlow {
  0%,
  100% {
    box-shadow:
      0 22px 38px rgba(4, 12, 24, 0.26),
      inset 0 1px 1px rgba(255, 255, 255, 0.05);
  }

  50% {
    box-shadow:
      0 26px 44px rgba(4, 12, 24, 0.32),
      0 0 0 1px rgba(83, 167, 255, 0.08) inset;
  }
}

@keyframes workflowLineFlow {
  0%,
  100% {
    transform: scaleX(0.46);
    opacity: 0.72;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes workflowBarPulse {
  0%,
  100% {
    filter: brightness(0.96);
  }

  50% {
    filter: brightness(1.15);
  }
}

@keyframes workflowPingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

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

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

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

/* Global theme video background and form dropdown fixes */
html {
  background: #07111f;
}

:root[data-theme="light"] html {
  background: #f8fbff;
}

body {
  position: relative;
  background: transparent !important;
}

.theme-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #07111f;
}

:root[data-theme="light"] .theme-video-bg {
  background: #f8fbff;
}

.theme-video-bg::before,
.theme-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.theme-video-bg::before {
  z-index: 1;
  background:
    radial-gradient(circle at 15% 16%, rgba(56, 213, 197, 0.24), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(83, 167, 255, 0.18), transparent 26%);
  mix-blend-mode: screen;
}

.theme-video-bg::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(3, 8, 16, 0.42), rgba(3, 8, 16, 0.72));
}

:root[data-theme="light"] .theme-video-bg::before {
  background:
    radial-gradient(circle at 15% 16%, rgba(47, 125, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(12, 174, 154, 0.12), transparent 26%);
  mix-blend-mode: multiply;
}

:root[data-theme="light"] .theme-video-bg::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(241, 247, 255, 0.68));
}

.theme-video-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(1.12) contrast(1.08) brightness(0.98);
}

:root[data-theme="light"] .theme-video-bg__video {
  opacity: 0.56;
  filter: saturate(1.08) contrast(1.04) brightness(1.05);
}

.page-grid {
  z-index: 1;
  opacity: 0.18;
}

.page-glow {
  z-index: 1;
  opacity: 0.42;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.cta-panel,
.modal__dialog {
  backdrop-filter: blur(20px);
}

.cta-panel {
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(83, 167, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(7, 17, 31, 0.66);
}

.modal__dialog {
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(8, 16, 28, 0.88);
}

.modal-form {
  background: rgba(255, 255, 255, 0.045);
}

:root[data-theme="light"] .cta-panel,
:root[data-theme="light"] .modal__dialog,
:root[data-theme="light"] .modal-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 255, 0.74)),
    rgba(255, 255, 255, 0.76);
}

.email-form select,
.modal-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.065) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23F5F9FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 14px;
}

.email-form select:required:invalid,
.modal-form select:required:invalid {
  color: rgba(229, 238, 250, 0.74);
}

.email-form select option,
.modal-form select option {
  background: #172235 !important;
  color: #f5f9ff !important;
}

.email-form select option:disabled,
.modal-form select option:disabled {
  color: rgba(229, 238, 250, 0.68) !important;
  background: #1f2a3d !important;
}

.email-form select option:checked,
.modal-form select option:checked {
  background: #2b476d !important;
  color: #ffffff !important;
}

:root[data-theme="light"] .email-form select,
:root[data-theme="light"] .modal-form select {
  color-scheme: light;
  background-color: rgba(255, 255, 255, 0.88) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%230D1B2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

:root[data-theme="light"] .email-form select:required:invalid,
:root[data-theme="light"] .modal-form select:required:invalid {
  color: rgba(13, 27, 47, 0.62);
}

:root[data-theme="light"] .email-form select option,
:root[data-theme="light"] .modal-form select option {
  background: #ffffff !important;
  color: #0d1b2f !important;
}

:root[data-theme="light"] .email-form select option:disabled,
:root[data-theme="light"] .modal-form select option:disabled {
  color: rgba(13, 27, 47, 0.55) !important;
  background: #eef4ff !important;
}

@media (prefers-reduced-motion: reduce) {
  .theme-video-bg__video {
    display: none;
  }
}

.site-header {
  z-index: 24;
}

:root[data-theme="light"] .email-form input::placeholder,
:root[data-theme="light"] .modal-form input::placeholder,
:root[data-theme="light"] .modal-form textarea::placeholder {
  color: rgba(13, 27, 47, 0.48);
}

/* Patch 2: stronger dark video visibility and safer native form selects */
:root:not([data-theme="light"]) .theme-video-bg::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 213, 197, 0.28), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(83, 167, 255, 0.24), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(88, 72, 255, 0.12), transparent 34%);
}

:root:not([data-theme="light"]) .theme-video-bg::after {
  background: linear-gradient(180deg, rgba(3, 8, 16, 0.14), rgba(3, 8, 16, 0.36));
}

:root:not([data-theme="light"]) .theme-video-bg__video {
  opacity: 0.72;
  filter: saturate(1.14) contrast(1.08) brightness(1.08);
}

:root:not([data-theme="light"]) .cta-panel {
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(83, 167, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(7, 17, 31, 0.56);
}

:root:not([data-theme="light"]) .modal__dialog {
  background:
    radial-gradient(circle at top left, rgba(56, 213, 197, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(8, 16, 28, 0.80);
}

.email-form select,
.modal-form select,
:root[data-theme="light"] .email-form select,
:root[data-theme="light"] .modal-form select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  background-image: none !important;
  padding-right: 1rem;
}

.email-form select::-ms-expand,
.modal-form select::-ms-expand {
  display: block;
}

.modal-form select option,
.email-form select option,
:root[data-theme="light"] .modal-form select option,
:root[data-theme="light"] .email-form select option {
  background-image: none !important;
}

/* Patch 3: refine hero heading size and make light-mode background slightly more visible */
.hero__copy h1,
.hero__content h1,
.hero h1 {
  font-size: clamp(2.4rem, 4.7vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero__copy h1,
  .hero__content h1,
  .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.9rem);
    line-height: 1.1;
  }
}

:root[data-theme="light"] .theme-video-bg__video {
  opacity: 0.66;
  filter: saturate(1.1) contrast(1.04) brightness(1.03);
}

:root[data-theme="light"] .theme-video-bg::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(241, 247, 255, 0.52));
}

:root[data-theme="light"] .theme-video-bg::before {
  background:
    radial-gradient(circle at 15% 16%, rgba(47, 125, 255, 0.13), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(12, 174, 154, 0.1), transparent 26%);
  mix-blend-mode: multiply;
}

/* Patch 4: richer animation for visual workflow section */
.infographic-diagram,
.infographic-card {
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.infographic-diagram:hover,
.infographic-card:hover {
  transform: translateY(-4px);
}

.infographic-diagram:hover {
  box-shadow:
    0 28px 60px rgba(4, 12, 24, 0.34),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.infographic-card:hover {
  box-shadow:
    0 22px 48px rgba(4, 12, 24, 0.26),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.infographic-diagram__status {
  box-shadow: 0 0 0 0 rgba(141, 247, 236, 0.1);
  animation: infographicBadgePulse 4.4s ease-in-out infinite;
}

.infographic-diagram__stage {
  isolation: isolate;
}

.infographic-diagram__stage::before {
  animation: infographicAmbientDrift 16s ease-in-out infinite alternate;
}

.workflow-vector__flow {
  filter: drop-shadow(0 0 14px rgba(83, 167, 255, 0.22));
  animation: workflowDash 10s linear infinite, workflowFlowGlow 4.8s ease-in-out infinite;
}

.workflow-vector__loop {
  animation: workflowDrift 14s linear infinite, workflowLoopFade 5.4s ease-in-out infinite;
}

.workflow-vector__node circle {
  animation: workflowNodeAura 3.8s ease-in-out infinite;
}

.workflow-vector__node--two circle {
  animation-delay: 0.35s;
}

.workflow-vector__node--three circle {
  animation-delay: 0.7s;
}

.workflow-vector__node--four circle {
  animation-delay: 1.05s;
}

.workflow-float::after,
.workflow-activity::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.1) 50%, transparent 82%);
  transform: translateX(-135%);
  pointer-events: none;
}

.workflow-float::after {
  animation: workflowPanelSweep 7.4s ease-in-out infinite;
}

.workflow-float--right::after {
  animation-delay: 1.1s;
}

.workflow-activity::after {
  animation: workflowPanelSweep 8.5s ease-in-out infinite 2s;
}

.workflow-activity__row div,
.infographic-bars__row div {
  position: relative;
}

.workflow-activity__row div::after,
.infographic-bars__row div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 28%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: workflowShimmer 4.8s ease-in-out infinite;
}

.workflow-activity__row:nth-child(2) div::after,
.infographic-bars__row:nth-child(2) div::after {
  animation-delay: 0.55s;
}

.infographic-bars__row:nth-child(3) div::after {
  animation-delay: 1.1s;
}

.infographic-bars__row i {
  position: relative;
  overflow: hidden;
  animation: infographicBarPulse 4.8s ease-in-out infinite;
}

.infographic-bars__row:nth-child(2) i {
  animation-delay: 0.45s, 2s;
}

.infographic-bars__row:nth-child(3) i {
  animation-delay: 0.9s;
}

.infographic-meter svg {
  animation: infographicMeterFloat 6.6s ease-in-out infinite;
}

.infographic-meter__value {
  animation: infographicMeterStroke 4.2s ease-in-out infinite;
}

.infographic-meter__copy strong {
  animation: infographicNumberGlow 4.4s ease-in-out infinite;
}

.infographic-timeline__item {
  animation: timelineItemFloat 6.2s ease-in-out infinite;
}

.infographic-timeline__item:nth-child(2) {
  animation-delay: 0.55s;
}

.infographic-timeline__item:nth-child(3) {
  animation-delay: 1.1s;
}

.infographic-timeline__item > span {
  animation: timelineDotPulse 2.8s ease-in-out infinite;
}

.infographic-timeline__item:nth-child(2) > span {
  animation-delay: 0.4s;
}

.infographic-timeline__item:nth-child(3) > span {
  animation-delay: 0.8s;
}

@keyframes infographicBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(141, 247, 236, 0.08);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.04);
    transform: translateY(-1px);
  }
}

@keyframes infographicAmbientDrift {
  0% {
    opacity: 0.28;
    transform: translate3d(-1.5%, 0, 0) scale(0.985);
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.34;
    transform: translate3d(1.5%, -1%, 0) scale(1.02);
  }
}

@keyframes workflowFlowGlow {
  0%,
  100% {
    opacity: 0.86;
  }
  50% {
    opacity: 1;
  }
}

@keyframes workflowLoopFade {
  0%,
  100% {
    opacity: 0.44;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes workflowNodeAura {
  0%,
  100% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 0 rgba(83, 167, 255, 0));
  }
  50% {
    stroke-opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(83, 167, 255, 0.18));
  }
}

@keyframes workflowPanelSweep {
  0%,
  18% {
    transform: translateX(-135%);
    opacity: 0;
  }
  34%,
  58% {
    opacity: 0.9;
  }
  82%,
  100% {
    transform: translateX(135%);
    opacity: 0;
  }
}

@keyframes workflowShimmer {
  0%,
  22% {
    transform: translateX(0);
    opacity: 0;
  }
  38%,
  58% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(470%);
    opacity: 0;
  }
}

@keyframes infographicBarPulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.08) brightness(1.08);
  }
}

@keyframes infographicMeterFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes infographicMeterStroke {
  0%,
  100% {
    stroke-dasharray: 207 264;
    filter: drop-shadow(0 0 14px rgba(141, 247, 236, 0.24));
    transform: rotate(-90deg) scale(1);
  }
  50% {
    stroke-dasharray: 214 264;
    filter: drop-shadow(0 0 18px rgba(141, 247, 236, 0.34));
    transform: rotate(-90deg) scale(1.02);
  }
}

@keyframes infographicNumberGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(141, 247, 236, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(141, 247, 236, 0.16);
  }
}

@keyframes timelineItemFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes timelineDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(141, 247, 236, 0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(141, 247, 236, 0.04);
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .infographic-diagram,
  .infographic-card,
  .infographic-diagram__status,
  .infographic-diagram__stage::before,
  .workflow-vector__flow,
  .workflow-vector__loop,
  .workflow-vector__node circle,
  .workflow-float::after,
  .workflow-activity::after,
  .workflow-activity__row div::after,
  .infographic-bars__row div::after,
  .infographic-bars__row i,
  .infographic-meter svg,
  .infographic-meter__value,
  .infographic-meter__copy strong,
  .infographic-timeline__item,
  .infographic-timeline__item > span {
    animation: none !important;
    transition: none !important;
  }
}


/* Patch 5: Namecheap shared hosting safe background and header layout */
html,
body {
  min-height: 100%;
}

body {
  isolation: isolate;
}

.theme-video-bg {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  display: block !important;
  transform: translateZ(0);
}

.theme-video-bg__video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 24 !important;
  margin-top: 0 !important;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.page-grid,
.page-glow {
  pointer-events: none;
}

.hero {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

/* Animated demo: typed search submits and refreshes the dashboard data */
.dashboard-search::before {
  content: "↵";
  position: absolute;
  right: 2.25rem;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(141, 247, 236, 0.3);
  background: rgba(83, 167, 255, 0.12);
  color: #8df7ec;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%) scale(0.75);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dashboard-search.is-entering {
  border-color: rgba(141, 247, 236, 0.34);
  box-shadow:
    0 0 0 1px rgba(141, 247, 236, 0.08) inset,
    0 0 24px rgba(83, 167, 255, 0.18);
  animation: searchSubmitPulse 640ms ease;
}

.dashboard-search.is-entering::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 0 18px rgba(141, 247, 236, 0.34);
}

.dashboard-search.is-entering .dashboard-search__cursor {
  transform: scaleY(1.18);
  box-shadow: 0 0 18px rgba(141, 247, 236, 0.46);
}

.dashboard-window__grid.is-processing .glass-card {
  animation: dashboardDataRefresh 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-window__grid.is-processing .glass-card:nth-child(2) {
  animation-delay: 80ms;
}

.dashboard-window__grid.is-processing .glass-card:nth-child(3) {
  animation-delay: 150ms;
}

@keyframes searchSubmitPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes dashboardDataRefresh {
  0% {
    opacity: 0.76;
    transform: translateY(8px) scale(0.985);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


/* Super animated process model: replaces the old workflow diagram */
.process-model-section {
  position: relative;
  overflow: hidden;
}

.process-model {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(83, 167, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 18%, rgba(83, 167, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(141, 247, 236, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 31, 0.84);
  box-shadow:
    0 30px 70px rgba(3, 11, 24, 0.34),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

:root[data-theme="light"] .process-model {
  border-color: rgba(47, 125, 255, 0.12);
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 125, 255, 0.14), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(12, 174, 154, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.74));
  box-shadow:
    0 30px 70px rgba(38, 82, 140, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.82);
}

.process-model__bg,
.process-grid-lines,
.process-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-grid-lines {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0.86), transparent 74%);
}

:root[data-theme="light"] .process-grid-lines {
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(47, 125, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 255, 0.06) 1px, transparent 1px);
}

.process-glow {
  margin: auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.48;
}

.process-glow--one {
  left: -10%;
  top: 10%;
  background: rgba(83, 167, 255, 0.26);
  animation: processGlowDriftOne 10s ease-in-out infinite;
}

.process-glow--two {
  right: -10%;
  bottom: 0;
  background: rgba(141, 247, 236, 0.2);
  animation: processGlowDriftTwo 11s ease-in-out infinite;
}

.process-model__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.2rem 1rem;
}

.process-model__header h3 {
  max-width: 720px;
  margin-top: 0.3rem;
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-model__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(141, 247, 236, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(141, 247, 236, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-model__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8df7ec;
  box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.1), 0 0 22px rgba(141, 247, 236, 0.45);
  animation: processStatusPulse 2.2s ease-in-out infinite;
}

.process-model__stage {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(72px, auto));
  gap: 1rem;
  align-items: stretch;
  padding: 1rem 0.1rem 1.2rem;
}

.process-track {
  position: absolute;
  inset: 0.25rem 0.35rem 0;
  z-index: 1;
  pointer-events: none;
}

.process-flow-map {
  position: absolute;
  inset: 0.2rem 0.2rem 0.6rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0.94;
  overflow: visible;
}

.process-flow-map__base,
.process-flow-map__dash,
.process-flow-map__beam {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-flow-map__base {
  stroke: rgba(83, 167, 255, 0.12);
  stroke-width: 3;
}

.process-flow-map__dash {
  stroke: url(#process-flow-gradient);
  stroke-width: 4;
  stroke-dasharray: 18 20;
  filter: url(#process-flow-glow);
  animation: processFlowDash 18s linear infinite;
}

.process-flow-map__beam {
  stroke: rgba(141, 247, 236, 0.86);
  stroke-width: 6;
  stroke-dasharray: 80 940;
  stroke-dashoffset: 0;
  filter: url(#process-flow-glow);
  opacity: 0.86;
  animation: processFlowBeam 7.2s cubic-bezier(0.72, 0, 0.2, 1) infinite;
}

.process-flow-map__token {
  fill: #8df7ec;
  filter: url(#process-flow-glow);
  opacity: 0.95;
}

.process-flow-map__token--two,
.process-flow-map__token--four {
  fill: #53a7ff;
}

:root[data-theme="light"] .process-flow-map__base {
  stroke: rgba(47, 125, 255, 0.18);
}

.process-track__line {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 47%;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(83, 167, 255, 0.68), rgba(141, 247, 236, 0.7), transparent);
  box-shadow: 0 0 24px rgba(83, 167, 255, 0.18);
  overflow: hidden;
}

.process-track__line::before,
.process-track__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: processTrackSweep 4.8s ease-in-out infinite;
}

.process-track__line::after {
  animation-delay: 1.8s;
}

.process-track__packet {
  position: absolute;
  top: calc(47% - 7px);
  left: 7%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8df7ec;
  box-shadow:
    0 0 0 8px rgba(141, 247, 236, 0.08),
    0 0 22px rgba(141, 247, 236, 0.5);
  animation: processPacketMove 6.8s cubic-bezier(0.55, 0, 0.2, 1) infinite;
}

.process-track__packet--two {
  animation-delay: 2.2s;
  background: #53a7ff;
  box-shadow:
    0 0 0 8px rgba(83, 167, 255, 0.08),
    0 0 22px rgba(83, 167, 255, 0.5);
}

.process-track__packet--three {
  animation-delay: 4.4s;
}

.process-track__packet--four {
  animation-delay: 5.6s;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(141, 247, 236, 0.5);
}

.process-step {
  position: relative;
  z-index: 3;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  min-height: 184px;
  padding: 1rem;
  border: 1px solid rgba(83, 167, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 25, 43, 0.86);
  box-shadow:
    0 20px 42px rgba(3, 11, 24, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  animation:
    processStepFloat 7.5s ease-in-out infinite,
    processStepActiveGlow 10s ease-in-out infinite;
}

:root[data-theme="light"] .process-step {
  border-color: rgba(47, 125, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 20px 42px rgba(38, 82, 140, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(141, 247, 236, 0.14), transparent 34%),
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 78%);
  transform: translateX(-130%);
  animation: processCardSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.86rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #53a7ff, #8df7ec, transparent);
  opacity: 0.48;
  transform-origin: left center;
  animation: processMiniLoad 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.process-step--one {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}

.process-step--two {
  grid-column: 1 / span 4;
  grid-row: 4 / span 2;
  animation-delay: 0.45s, 2s;
}

.process-step--three {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
  animation-delay: 0.9s, 4s;
}

.process-step--four {
  grid-column: 9 / span 4;
  grid-row: 4 / span 2;
  animation-delay: 1.35s, 6s;
}

.process-step--five {
  grid-column: 5 / span 4;
  grid-row: 5 / span 2;
  animation-delay: 1.8s;
}

.process-step--two::before,
.process-step--two::after { animation-delay: 0.55s; }
.process-step--three::before,
.process-step--three::after { animation-delay: 1.1s; }
.process-step--four::before,
.process-step--four::after { animation-delay: 1.65s; }
.process-step--five::before,
.process-step--five::after { animation-delay: 2.2s; }
.process-step--two .process-step__number,
.process-step--two .process-step__number::after { animation-delay: 2s; }
.process-step--three .process-step__number,
.process-step--three .process-step__number::after { animation-delay: 4s; }
.process-step--four .process-step__number,
.process-step--four .process-step__number::after { animation-delay: 6s; }
.process-step--five .process-step__number,
.process-step--five .process-step__number::after { animation-delay: 8s; }

.process-step__number {
  position: relative;
  width: max-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #8df7ec, #53a7ff);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 0 rgba(141, 247, 236, 0.22);
  animation: processNumberPulse 10s ease-in-out infinite;
}

.process-step__number::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(141, 247, 236, 0.5);
  opacity: 0;
  transform: scale(0.82);
  animation: processNumberRing 10s ease-in-out infinite;
}

.process-step__label {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-step h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.52;
}

.process-core {
  position: relative;
  z-index: 3;
  grid-column: 5 / span 4;
  grid-row: 2 / span 3;
  align-self: center;
  justify-self: center;
  width: min(260px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.process-core__orbit,
.process-core__pulse {
  position: absolute;
  border-radius: 50%;
}

.process-core__orbit--one {
  inset: 0;
  border: 1px solid rgba(83, 167, 255, 0.2);
  border-top-color: rgba(141, 247, 236, 0.9);
  border-right-color: rgba(83, 167, 255, 0.55);
  animation: processOrbit 8.5s linear infinite;
}

.process-core__orbit--two {
  inset: 28px;
  border: 1px dashed rgba(141, 247, 236, 0.24);
  border-left-color: rgba(83, 167, 255, 0.7);
  animation: processOrbitReverse 10s linear infinite;
}

.process-core__pulse {
  inset: 54px;
  background: radial-gradient(circle, rgba(141, 247, 236, 0.2), transparent 66%);
  animation: processCorePulse 3.2s ease-in-out infinite;
}

.process-core__chip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  color: #07111f;
  background: linear-gradient(135deg, #8df7ec, #53a7ff);
  box-shadow:
    0 22px 48px rgba(83, 167, 255, 0.28),
    0 0 0 10px rgba(141, 247, 236, 0.08);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: processChipBreathe 3.4s ease-in-out infinite;
}

.process-core__chip::before,
.process-core__chip::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.5), transparent 68%);
  transform: translateX(-80%) rotate(14deg);
  animation: processChipScan 3.8s ease-in-out infinite;
}

.process-core__chip::after {
  animation-delay: 1.6s;
  opacity: 0.52;
}

.process-core__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8df7ec;
  box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.08), 0 0 18px rgba(141, 247, 236, 0.48);
}

.process-core__dot--one {
  left: 12%;
  top: 36%;
  animation: processDotFloat 4s ease-in-out infinite;
}

.process-core__dot--two {
  right: 13%;
  top: 26%;
  background: #53a7ff;
  animation: processDotFloat 4.4s ease-in-out infinite 0.8s;
}

.process-core__dot--three {
  right: 26%;
  bottom: 16%;
  animation: processDotFloat 4.8s ease-in-out infinite 1.4s;
}

.process-model__footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.process-metric {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(83, 167, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.process-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.1), transparent 82%);
  transform: translateX(-130%);
  animation: processMetricSweep 7.5s ease-in-out infinite;
}

.process-metric:nth-child(2)::after { animation-delay: 1.1s; }
.process-metric:nth-child(3)::after { animation-delay: 2.2s; }

:root[data-theme="light"] .process-metric {
  background: rgba(255, 255, 255, 0.7);
}

.process-metric span {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.process-metric div {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

:root[data-theme="light"] .process-metric div {
  background: rgba(13, 27, 47, 0.08);
}

.process-metric i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #53a7ff, #8df7ec);
  box-shadow: 0 0 18px rgba(83, 167, 255, 0.18);
  transition: width 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-metric i.is-animated {
  animation: workflowBarPulse 4.6s ease-in-out infinite 1.4s;
}

.process-metric strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1rem;
}

@keyframes processFlowDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -420; }
}

@keyframes processFlowBeam {
  0% { stroke-dashoffset: 940; opacity: 0; }
  12% { opacity: 0.9; }
  58% { opacity: 0.85; }
  100% { stroke-dashoffset: -940; opacity: 0; }
}

@keyframes processStepActiveGlow {
  0%, 18%, 100% {
    border-color: rgba(83, 167, 255, 0.13);
    box-shadow:
      0 20px 42px rgba(3, 11, 24, 0.24),
      inset 0 1px 1px rgba(255, 255, 255, 0.06);
  }
  7%, 11% {
    border-color: rgba(141, 247, 236, 0.52);
    box-shadow:
      0 24px 54px rgba(83, 167, 255, 0.23),
      0 0 0 1px rgba(141, 247, 236, 0.18) inset,
      0 0 40px rgba(141, 247, 236, 0.12);
  }
}

@keyframes processNumberPulse {
  0%, 18%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(141, 247, 236, 0.18); }
  7%, 11% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.09); }
}

@keyframes processNumberRing {
  0%, 5%, 18%, 100% { opacity: 0; transform: scale(0.82); }
  8%, 12% { opacity: 0.72; transform: scale(1.2); }
}

@keyframes processChipScan {
  0%, 62%, 100% { transform: translateX(-86%) rotate(14deg); opacity: 0; }
  18%, 38% { opacity: 0.82; }
  52% { transform: translateX(86%) rotate(14deg); opacity: 0; }
}

@keyframes processMetricSweep {
  0%, 70%, 100% { transform: translateX(-130%); opacity: 0; }
  15%, 34% { opacity: 1; }
  48% { transform: translateX(130%); opacity: 0; }
}

@keyframes processGlowDriftOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, 22px, 0) scale(1.12); }
}

@keyframes processGlowDriftTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-34px, -26px, 0) scale(1.08); }
}

@keyframes processStatusPulse {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.26); opacity: 1; }
}

@keyframes processTrackSweep {
  0%, 28% { transform: translateX(-120%); opacity: 0; }
  38%, 66% { opacity: 0.9; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes processPacketMove {
  0% { left: 7%; transform: scale(0.72); opacity: 0; }
  10% { opacity: 1; }
  48% { transform: scale(1.08); }
  90% { opacity: 1; }
  100% { left: 92%; transform: scale(0.72); opacity: 0; }
}

@keyframes processStepFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes processCardSweep {
  0%, 70%, 100% { transform: translateX(-130%); opacity: 0; }
  14%, 34% { opacity: 1; }
  42% { transform: translateX(130%); opacity: 0; }
}

@keyframes processMiniLoad {
  0%, 100% { transform: scaleX(0.34); opacity: 0.28; }
  50% { transform: scaleX(0.88); opacity: 0.72; }
}

@keyframes processOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes processOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes processCorePulse {
  0%, 100% { transform: scale(0.84); opacity: 0.58; }
  50% { transform: scale(1.18); opacity: 0.95; }
}

@keyframes processChipBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.04); }
}

@keyframes processDotFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(8px, -10px, 0) scale(1.18); }
}

@media (max-width: 980px) {
  .process-model__header {
    flex-direction: column;
  }

  .process-model__stage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .process-flow-map {
    display: none;
  }

  .process-track {
    left: 28px;
    right: auto;
    top: 96px;
    bottom: 96px;
    width: 3px;
  }

  .process-track__line {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(83, 167, 255, 0.7), rgba(141, 247, 236, 0.72), transparent);
  }

  .process-track__line::before,
  .process-track__line::after {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82), transparent);
    transform: translateY(-120%);
    animation-name: processTrackSweepMobile;
  }

  .process-track__packet {
    top: 0;
    left: -5px;
    animation-name: processPacketMoveMobile;
  }

  .process-step,
  .process-step--one,
  .process-step--two,
  .process-step--three,
  .process-step--four,
  .process-step--five,
  .process-core {
    grid-column: 1;
    grid-row: auto;
  }

  .process-step {
    min-height: 0;
    margin-left: 34px;
  }

  .process-core {
    width: 210px;
    margin: 0.35rem auto 0.4rem;
  }

  .process-model__footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-model {
    padding: 1rem;
    border-radius: 28px;
  }

  .process-model__header h3 {
    font-size: 1.35rem;
  }

  .process-model__status {
    width: 100%;
    justify-content: center;
  }

  .process-step {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .process-core {
    width: 170px;
  }

  .process-core__chip {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    font-size: 1.25rem;
  }

  .process-metric {
    grid-template-columns: 1fr auto;
  }

  .process-metric div {
    grid-column: 1 / -1;
    order: 3;
  }
}

@keyframes processTrackSweepMobile {
  0%, 28% { transform: translateY(-120%); opacity: 0; }
  38%, 66% { opacity: 0.9; }
  100% { transform: translateY(120%); opacity: 0; }
}

@keyframes processPacketMoveMobile {
  0% { top: 0; transform: scale(0.72); opacity: 0; }
  10% { opacity: 1; }
  48% { transform: scale(1.08); }
  90% { opacity: 1; }
  100% { top: calc(100% - 14px); transform: scale(0.72); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .process-glow,
  .process-model__status span,
  .process-track__line::before,
  .process-track__line::after,
  .process-flow-map__dash,
  .process-flow-map__beam,
  .process-flow-map__token,
  .process-track__packet,
  .process-step,
  .process-step::before,
  .process-step::after,
  .process-core__orbit,
  .process-core__pulse,
  .process-core__chip,
  .process-core__chip::before,
  .process-core__chip::after,
  .process-core__dot,
  .process-metric::after {
    animation: none !important;
  }
}

/* Patch: force hero column reversal on mobile browsers */
@media (max-width: 1023px) {
  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero__visual {
    order: 1 !important;
    width: 100% !important;
    margin-inline: auto !important;
  }

  .hero__content {
    order: 2 !important;
    width: 100% !important;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    display: grid !important;
  }

  .hero__content {
    order: 1 !important;
  }

  .hero__visual {
    order: 2 !important;
  }
}


/* Stability patch: keep hero dashboard static and prevent layout jump on mobile */
.hero,
.hero__visual,
.dashboard-window,
.dashboard-window__body,
.dashboard-window__grid {
  overflow-anchor: none;
}

.dashboard-insight,
.dashboard-window__grid .glass-card,
.dashboard-window__grid .glass-card--accent,
.dashboard-window__grid .mini-metrics div,
.dashboard-window__grid .task-item {
  transform: none;
}

/* Allow lift on hover/focus for interactivity */
.dashboard-insight:hover,
.dashboard-insight:focus-within,
.dashboard-window__grid .task-item:hover,
.dashboard-window__grid .task-item:focus-visible {
  transform: translateY(-2px) !important;
}

.dashboard-window__grid .task-item:hover,
.dashboard-window__grid .task-item:focus-visible {
  transform: translateX(3px) !important;
}

.dashboard-window__grid .glass-card--accent,
.dashboard-window__grid .mini-metrics div,
.dashboard-window__grid .task-item,
.dashboard-insight::after,
.dashboard-window__grid .task-item::after {
  animation: none !important;
}

.dashboard-search {
  min-height: 62px;
  align-items: flex-start;
}

.dashboard-search__prompt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.8em;
  max-width: calc(100% - 40px);
}

.dashboard-insights {
  grid-auto-rows: 1fr;
}

.dashboard-insight {
  min-height: 74px;
}

.dashboard-insight strong {
  display: block;
  min-height: 2.45em;
}

.dashboard-window__grid .glass-card h2 {
  min-height: 3.15em;
}

.dashboard-window__grid .card-list {
  min-height: 7.6em;
}

.dashboard-window__grid .mini-metrics strong {
  min-height: 1.35em;
}

.dashboard-window__grid .task-item {
  min-height: 64px;
}

.dashboard-window__grid .task-item > div {
  min-height: 3.2em;
}

.dashboard-window__grid .task-item strong {
  min-height: 1.3em;
}

.dashboard-window__grid .task-item p {
  min-height: 2.4em;
}

@media (max-width: 640px) {
  .dashboard-search {
    min-height: 66px;
  }

  .dashboard-search__prompt {
    min-height: 2.9em;
    font-size: 0.94rem;
  }

  .dashboard-insights {
    gap: 0.55rem;
  }

  .dashboard-insight {
    min-height: 82px;
    padding: 0.62rem 0.58rem;
  }

  .dashboard-insight span {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .dashboard-insight strong {
    min-height: 2.7em;
    font-size: 0.78rem;
  }

  .dashboard-window__grid .glass-card {
    gap: 0.85rem;
  }

  .dashboard-window__grid .glass-card h2 {
    min-height: 3.5em;
    font-size: 1.04rem;
  }

  .dashboard-window__grid .card-list {
    min-height: 8.3em;
  }

  .dashboard-window__grid .task-item {
    min-height: 70px;
  }

  .dashboard-window__grid .task-item p {
    min-height: 2.6em;
  }
}

/* Process engine patch: explicit active-step motion so animation stays visible */
.process-step,
.process-core,
.process-metric {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease, background-color 320ms ease;
}

.process-step.is-active {
  transform: translate3d(0, -8px, 0) scale(1.01);
  border-color: rgba(141, 247, 236, 0.55);
  box-shadow:
    0 28px 56px rgba(83, 167, 255, 0.22),
    0 0 0 1px rgba(141, 247, 236, 0.18) inset,
    0 0 40px rgba(141, 247, 236, 0.12);
}

.process-step.is-active::after {
  opacity: 0.9;
  background: linear-gradient(90deg, #53a7ff, #8df7ec 78%, rgba(141, 247, 236, 0));
}

.process-step.is-active .process-step__number {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(141, 247, 236, 0.1);
}

.process-core.is-active .process-core__chip {
  transform: translateY(-6px) scale(1.06);
  box-shadow:
    0 28px 58px rgba(83, 167, 255, 0.34),
    0 0 0 14px rgba(141, 247, 236, 0.09);
}

.process-core.is-active .process-core__pulse {
  opacity: 1;
  transform: scale(1.2);
}

.process-metric.is-active {
  border-color: rgba(141, 247, 236, 0.3);
  box-shadow: 0 18px 34px rgba(83, 167, 255, 0.14), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.process-metric.is-active strong {
  color: var(--teal);
}

@media (max-width: 980px) {
  .process-step.is-active {
    transform: translate3d(4px, -4px, 0) scale(1.01);
  }
}


/* Mobile reliability patch: fixes hamburger/menu usability and heavy mobile layout issues */
html,
body {
  max-width: 100%;
}

#root,
.taxpilot-react-shell,
main,
section {
  min-width: 0;
}

@media (max-width: 1023px) {
  .site-header {
    z-index: 80;
  }

  .header__inner {
    min-height: 64px;
  }

  .mobile-menu {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 90;
    padding-top: 0;
    pointer-events: auto;
  }

  .mobile-menu__inner {
    max-height: calc(100svh - 106px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero {
    padding-top: 32px;
    overflow: hidden;
  }

  .hero__grid {
    gap: 1.35rem;
  }

  .hero__visual {
    max-width: 720px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__content h1,
  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.1rem, 7.6vw, 2.5rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-heading h2,
  section h2 {
    font-size: clamp(1.65rem, 6.2vw, 2rem) !important;
    line-height: 1.15;
  }

  .dashboard-window,
  .infographic-diagram,
  .process-model,
  .cta-panel,
  .comparison-table {
    max-width: 100%;
  }
}

@media (max-width: 639px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding: 10px 0 8px;
  }

  .header__inner {
    gap: 0.5rem;
    padding: 0.62rem;
    border-radius: 22px;
  }

  .logo {
    flex: 1 1 auto;
    max-width: none;
  }

  .logo__type {
    min-width: 0;
  }

  .logo__name {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header__utilities {
    margin-left: 0;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 15px;
  }

  .mobile-menu {
    top: 78px;
  }

  .mobile-menu__inner {
    width: min(calc(100% - 24px), var(--container));
    max-height: calc(100svh - 96px);
    padding: 0.9rem;
    border-radius: 24px;
  }

  .mobile-menu__intro {
    margin-bottom: 0.75rem;
  }

  .mobile-menu__copy {
    font-size: 0.88rem;
  }

  .mobile-nav,
  .mobile-menu__actions {
    gap: 0.58rem;
  }

  .mobile-nav a,
  .mobile-menu__actions .btn {
    min-height: 46px;
    padding: 0.78rem 0.85rem;
    border-radius: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__grid {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero__visual {
    margin-top: 0;
  }

  .dashboard-window {
    border-radius: 22px;
  }

  .dashboard-window__body {
    padding: 0.76rem;
  }

  .dashboard-window__grid {
    height: auto !important;
    min-height: 0;
  }

  .dashboard-window__grid .dashboard-panel {
    max-height: none;
    overflow: visible;
  }

  .dashboard-insights,
  .dashboard-tabs,
  .mini-metrics,
  .dashboard-window__grid .glass-card--wide {
    grid-template-columns: 1fr !important;
  }

  .dashboard-tabs__indicator {
    display: none;
  }

  .dashboard-tab {
    min-height: 40px;
    justify-content: flex-start;
  }

  .hero__actions,
  .cta-actions,
  .success-state__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .cta-actions .btn,
  .email-form button,
  .modal-form button {
    width: 100%;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    min-height: 52px;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* Mobile menu readability patch: keep hero/dashboard text from showing through the menu */
@media (max-width: 1023px) {
  .mobile-menu__inner {
    isolation: isolate;
    backdrop-filter: blur(26px) saturate(1.08);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    background:
      radial-gradient(circle at top right, rgba(83, 167, 255, 0.18), transparent 30%),
      radial-gradient(circle at bottom left, rgba(141, 247, 236, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(8, 18, 31, 0.985), rgba(5, 14, 25, 0.985));
  }

  .mobile-nav a,
  .mobile-menu__actions .btn,
  .mobile-menu .language-control {
    background-color: rgba(10, 22, 38, 0.92);
  }

  :root[data-theme="light"] .mobile-menu__inner {
    background:
      radial-gradient(circle at top right, rgba(47, 125, 255, 0.12), transparent 30%),
      radial-gradient(circle at bottom left, rgba(12, 174, 154, 0.08), transparent 24%),
      linear-gradient(180deg, rgba(248, 251, 255, 0.995), rgba(239, 246, 255, 0.995));
  }

  :root[data-theme="light"] .mobile-nav a,
  :root[data-theme="light"] .mobile-menu__actions .btn,
  :root[data-theme="light"] .mobile-menu .language-control {
    background-color: rgba(255, 255, 255, 0.96);
  }
}

/* Final mobile menu patch: full-screen readable menu layer and proper close icon */
.menu-toggle {
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1023px) {
  .mobile-menu:not([hidden]) {
    display: block;
  }

  .mobile-menu {
    bottom: 0;
    min-height: calc(100svh - 86px);
    background: rgba(5, 14, 25, 0.72);
    backdrop-filter: blur(18px) saturate(1.04);
    -webkit-backdrop-filter: blur(18px) saturate(1.04);
  }

  :root[data-theme="light"] .mobile-menu {
    background: rgba(239, 246, 255, 0.88);
  }

  .mobile-menu__inner {
    margin-top: 0;
    box-shadow:
      0 30px 80px rgba(2, 9, 18, 0.34),
      inset 0 1px 1px rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 639px) {
  .mobile-menu {
    min-height: calc(100svh - 78px);
  }
}

/* Mobile hero order patch: show headline and actions before the dashboard preview */
@media (max-width: 1023px) {
  .hero__content {
    order: 1 !important;
  }

  .hero__visual {
    order: 2 !important;
  }
}
