:root {
  color-scheme: dark;
  --content-max: 1180px;
  --page-gutter: 48px;
  --header-fade-height: 168px;
  --bg: #030507;
  --text: #f7fbff;
  --muted: #a9b5c5;
  --soft: rgba(247, 251, 255, 0.7);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(8, 14, 22, 0.7);
  --panel-strong: rgba(10, 18, 28, 0.86);
  --cyan: #7de8ff;
  --green: #b5f58b;
  --coral: #ff9b7b;
  --violet: #a79cff;
  --logo-purple: rgba(117, 76, 232, 0.5);
  --logo-purple-hover: rgba(134, 92, 246, 0.68);
  --font-body: Krub, "Segoe UI Variable", "SF Pro Text", Aptos, ui-sans-serif, system-ui, sans-serif;
  --font-display: Inter, "Segoe UI Variable", "SF Pro Display", Aptos, ui-sans-serif, system-ui, sans-serif;
  --focus-frame-height: clamp(520px, 70svh, 680px);
  --focus-handoff-gap: clamp(42px, 6svh, 78px);
  --focus-section-overlap: clamp(24px, 3.5svh, 54px);
  --focus-pin-top: max(104px, calc((100svh - var(--focus-frame-height)) / 2));
  --highlight-edge: transparent;
  --highlight-soft: rgba(255, 255, 255, 0.02);
  --highlight-mid: rgba(255, 255, 255, 0.06);
  --highlight-core: rgba(255, 255, 255, 0.1);
  --highlight-scale: -7.5%;
  --highlight-radius: 999px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

html.has-inertial-wheel-scroll {
  scroll-behavior: auto;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(calc(-100% - 24px));
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.94);
  color: #061014;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hover-highlight {
  position: relative;
  isolation: isolate;
}

.hover-highlight::before {
  content: "";
  position: absolute;
  inset: var(--highlight-scale);
  z-index: -1;
  border-radius: var(--highlight-radius);
  background: radial-gradient(
    ellipse at center,
    var(--highlight-core) 0%,
    var(--highlight-mid) 48%,
    var(--highlight-soft) 72%,
    var(--highlight-edge) 100%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}

.hover-highlight:hover::before,
.hover-highlight:focus-visible::before {
  opacity: 1;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #020405;
}

.site-background::before,
.site-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-background::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.7), transparent 38%),
    linear-gradient(90deg, rgba(2, 4, 5, 0.12), rgba(2, 4, 5, 0.58) 48%, rgba(2, 4, 5, 0.08));
}

.site-background::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.5), transparent 42%),
    linear-gradient(180deg, rgba(2, 4, 5, 0.03), rgba(2, 4, 5, 0.42));
}

.header-content-fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  height: var(--header-fade-height);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 45%, rgba(2, 4, 5, 0.36) 0 28%, rgba(2, 4, 5, 0.23) 46%, transparent 72%),
    radial-gradient(ellipse at 50% 42%, rgba(2, 4, 5, 0.28) 0 32%, rgba(2, 4, 5, 0.17) 54%, transparent 82%),
    radial-gradient(ellipse at 70% 42%, rgba(2, 4, 5, 0.18) 0 18%, rgba(2, 4, 5, 0.08) 44%, transparent 76%),
    linear-gradient(180deg, rgba(2, 4, 5, 0.3) 0%, rgba(2, 4, 5, 0.2) 54%, transparent 100%),
    linear-gradient(90deg, rgba(2, 4, 5, 0.18) 0%, rgba(2, 4, 5, 0.12) 56%, transparent 82%);
}

[data-sparkle-canvas] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: calc(100% - var(--page-gutter));
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px 0;
}

.site-main,
.legal-main,
.site-footer {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  animation: page-content-rise 1880ms linear 0ms both;
  transform-origin: 50% 100%;
  will-change: transform;
}

.site-main {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent 112px,
    rgba(0, 0, 0, 0.18) 136px,
    #000 176px,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent 112px,
    rgba(0, 0, 0, 0.18) 136px,
    #000 176px,
    #000 100%
  );
}

@keyframes page-content-rise {
  0% {
    animation-timing-function: cubic-bezier(0.12, 0.78, 0.16, 1);
    transform: translate3d(0, clamp(360px, 72svh, 720px), 0);
  }

  68% {
    animation-timing-function: cubic-bezier(0.18, 0.84, 0.28, 1);
    transform: translate3d(0, 18px, 0);
  }

  82% {
    animation-timing-function: cubic-bezier(0.32, 0, 0.16, 1);
    transform: translate3d(0, -8px, 0);
  }

  92% {
    animation-timing-function: cubic-bezier(0.2, 0.76, 0.26, 1);
    transform: translate3d(0, 3px, 0);
  }

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

body.is-page-exiting > .site-main,
body.is-page-exiting > .legal-main,
body.is-page-exiting > .site-footer {
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

.page-exit-slice {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  animation: page-content-exit 900ms cubic-bezier(0.58, 0.02, 0.86, 0.42) both;
  contain: layout paint style;
}

.page-exit-slice-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100svh;
  transform: translate3d(0, calc(var(--exit-scroll-y, 0px) * -1), 0);
  will-change: transform;
}

.page-exit-slice .site-main,
.page-exit-slice .legal-main,
.page-exit-slice .site-footer {
  animation: none;
  transform: none;
  will-change: auto;
}

@keyframes page-content-exit {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -118svh, 0);
  }
}

.site-section {
  width: calc(100% - var(--page-gutter));
  max-width: var(--content-max);
  margin-inline: auto;
}

.demo-section,
.product-story,
.product-close,
.pricing-directory,
.pricing-afterword,
.integration-directory,
.downloads-directory,
.resource-directory,
.related-resources {
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

.integration-directory,
.pricing-directory,
.downloads-directory,
.resource-directory {
  contain-intrinsic-size: auto 1280px;
}

.brand {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 72px;
  padding: 0 20px 0 8px;
  font-size: 30px;
  font-weight: 400;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 2px -28px 2px -18px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 4, 5, 0.7) 0%, rgba(2, 4, 5, 0.52) 44%, rgba(2, 4, 5, 0.2) 70%, transparent 100%);
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: none;
}

.site-nav {
  position: relative;
  isolation: isolate;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 8px 28px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: -10px -22px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 4, 5, 0.5) 0%, rgba(2, 4, 5, 0.36) 48%, rgba(2, 4, 5, 0.14) 74%, transparent 100%);
}

.site-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 14px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 450;
  transition: color 180ms ease, padding 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 36px;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  transform: translateX(-50%);
}

.site-nav .nav-link span {
  display: inline-block;
  font-size: 1em;
  transition: font-size 240ms cubic-bezier(0.2, 0.9, 0.2, 1), text-shadow 220ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible,
.site-nav .nav-link[aria-current="page"] {
  color: var(--text);
  z-index: 2;
}

.site-nav .nav-link[aria-current="page"]::after {
  opacity: 1;
}

.site-nav .nav-link:hover span,
.site-nav .nav-link:focus-visible span {
  font-size: 1.5em;
  animation: menu-text-pop 260ms cubic-bezier(0.18, 0.95, 0.26, 1.2) both;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

@keyframes menu-text-pop {
  0% {
    letter-spacing: 0;
  }

  72% {
    letter-spacing: 0.01em;
  }

  100% {
    letter-spacing: 0;
  }
}

.site-action {
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(255, 137, 97, 0.32) 0%,
    rgba(255, 137, 97, 0.64) 24%,
    rgba(233, 72, 179, 0.64) 50%,
    rgba(52, 123, 255, 0.64) 76%,
    rgba(52, 123, 255, 0.32) 100%
  );
  font-size: 17px;
  font-weight: 560;
  transition: background 180ms ease, transform 180ms ease;
}

.site-action span {
  display: inline-block;
  transition: transform 180ms ease;
}

.site-action:hover,
.site-action:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(255, 137, 97, 0.4) 0%,
    rgba(255, 137, 97, 0.8) 24%,
    rgba(233, 72, 179, 0.8) 50%,
    rgba(52, 123, 255, 0.8) 76%,
    rgba(52, 123, 255, 0.4) 100%
  );
  transform: translateY(-1px);
}

.site-action:hover span,
.site-action:focus-visible span {
  transform: scale(1.1);
}

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

.mobile-menu-toggle {
  border: 0;
  cursor: pointer;
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  min-height: 100svh;
  padding: 132px 0 82px;
}

.hero-content {
  max-width: 860px;
  min-width: 0;
}

.support-line {
  max-width: max-content;
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(125, 232, 255, 0.45);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 560;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 560;
  line-height: 0.92;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 560;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--logo-purple);
  box-shadow: 0 18px 48px rgba(117, 76, 232, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--logo-purple-hover);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.product-hero {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.66fr);
  gap: clamp(28px, 3.8vw, 48px);
  min-height: 100svh;
  padding-bottom: 72px;
}

.product-hero-copy,
.product-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.product-hero-copy::before,
.product-copy::before {
  content: "";
  position: absolute;
  inset: -40px -56px -36px -48px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(2, 4, 5, 0.5) 0%,
    rgba(2, 4, 5, 0.36) 44%,
    rgba(2, 4, 5, 0.14) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.product-hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 5.8vw, 84px);
  font-weight: 520;
  line-height: 0.96;
}

.product-hero .hero-copy,
.product-copy p {
  color: rgba(223, 232, 244, 0.9);
}

.product-shot {
  position: relative;
  isolation: isolate;
  margin: 0;
  transform-style: preserve-3d;
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 8% 4% -6%;
  z-index: -1;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 16% 20%, rgba(125, 232, 255, 0.18), transparent 44%),
    radial-gradient(ellipse at 78% 82%, rgba(181, 245, 139, 0.12), transparent 44%),
    rgba(0, 0, 0, 0.34);
  filter: blur(24px);
  opacity: 0.84;
  transform: translateZ(-24px);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.98;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-shot--hero {
  justify-self: end;
  width: min(100%, 450px);
  transform:
    perspective(1100px)
    rotateX(5deg)
    rotateY(-8deg)
    scale(1.3225)
    translate3d(0, 8px, 0);
  animation: product-shot-float 6.8s ease-in-out infinite;
}

.site-main.home-page .product-hero-copy {
  animation: home-copy-enter 1240ms cubic-bezier(0.16, 0.92, 0.22, 1) 120ms both;
  will-change: transform;
}

.site-main.home-page .product-shot--hero {
  animation:
    home-shot-enter 1560ms cubic-bezier(0.16, 0.92, 0.22, 1) 220ms both,
    product-shot-float 6.8s ease-in-out 1780ms infinite;
  will-change: transform;
}

.product-shot--hero img {
  opacity: 0.86;
}

@keyframes home-copy-enter {
  0% {
    transform: translate3d(-92px, 0, 0);
  }

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

@keyframes home-shot-enter {
  0% {
    transform:
      perspective(1100px)
      rotateX(5deg)
      rotateY(-8deg)
      scale(1.18)
      translate3d(0, 168px, 0);
  }

  100% {
    transform:
      perspective(1100px)
      rotateX(5deg)
      rotateY(-8deg)
      scale(1.3225)
      translate3d(0, 8px, 0);
  }
}

@keyframes product-shot-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

.product-story {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: 92vh;
  padding: 104px 0;
}

.product-story--tasks {
  grid-template-columns: minmax(480px, 1fr) minmax(420px, 0.92fr);
}

.product-story--calendar {
  margin-top: 10px;
}

.product-copy {
  max-width: 640px;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 520;
  line-height: 1.04;
}

.product-copy p:not(.support-line) {
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.product-shot--wide {
  width: min(100%, 600px);
}

.product-shot--wide img {
  opacity: 0.98;
}

.product-shot--tasks-panel {
  width: min(100%, 390px);
  height: clamp(440px, 56svh, 560px);
  justify-self: center;
  overflow: hidden;
}

.product-shot--tasks-panel img {
  opacity: 0.86;
}

.product-story--calendar .product-shot {
  justify-self: end;
  transform:
    perspective(1200px)
    rotateX(3deg)
    rotateY(-5deg)
    translate3d(0, 0, 0);
}

.product-story--tasks .product-shot {
  justify-self: start;
  transform:
    perspective(1200px)
    rotateX(3deg)
    rotateY(5deg)
    translate3d(0, 0, 0);
}

.product-story--tasks .product-shot--tasks-panel {
  justify-self: center;
}

.product-story--buckets .product-shot {
  justify-self: end;
  width: min(100%, 360px);
  transform:
    perspective(1200px)
    rotateX(2deg)
    rotateY(-6deg)
    translate3d(0, 0, 0);
}

.focus-scroll-section {
  position: relative;
  z-index: var(--focus-layer, 1);
  display: block;
  min-height: calc(112svh + var(--focus-frame-height));
  padding-block: 0;
  scroll-margin-top: var(--focus-pin-top);
  content-visibility: visible;
}

.focus-scroll-section + .focus-scroll-section {
  margin-top: calc(var(--focus-handoff-gap) - var(--focus-section-overlap));
}

.focus-frame {
  position: sticky;
  top: var(--focus-pin-top);
  display: grid;
  align-items: center;
  min-height: var(--focus-frame-height);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.product-hero.focus-scroll-section {
  --focus-layer: 1;
  min-height: calc(112svh + var(--focus-frame-height));
  padding: 0;
}

.product-story--calendar {
  --focus-layer: 2;
}

.product-story--tasks {
  --focus-layer: 3;
  --focus-section-overlap: clamp(20px, 3svh, 48px);
}

.product-story--buckets {
  --focus-layer: 4;
  --focus-section-overlap: clamp(18px, 2.75svh, 42px);
}

.product-hero .focus-frame {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.66fr);
  gap: clamp(28px, 3.8vw, 48px);
}

.product-story .focus-frame {
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1fr);
  gap: clamp(36px, 6vw, 84px);
}

.product-story--tasks .focus-frame {
  grid-template-columns: minmax(480px, 1fr) minmax(420px, 0.92fr);
}

.product-close {
  display: grid;
  align-items: center;
  min-height: 74vh;
  padding: 96px 0 132px;
}

.product-close .product-copy {
  max-width: 760px;
}

.product-close h2 {
  max-width: 820px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
  padding: 96px 0 126px;
  scroll-margin-top: 156px;
}

.contact-copy {
  position: relative;
  isolation: isolate;
  max-width: 520px;
}

.contact-copy::before {
  content: "";
  position: absolute;
  inset: -34px -48px -32px -44px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(2, 4, 5, 0.5) 0%,
    rgba(2, 4, 5, 0.36) 44%,
    rgba(2, 4, 5, 0.14) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 520;
  line-height: 0.98;
}

.contact-copy p:not(.support-line) {
  margin: 24px 0 0;
  color: rgba(223, 232, 244, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.72);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
}

.field {
  display: grid;
  gap: 8px;
  color: rgba(231, 240, 250, 0.78);
  font-size: 13px;
  font-weight: 520;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 152px;
  resize: vertical;
  padding: 13px 14px;
}

.field select option {
  background: #101823;
  color: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(125, 232, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(125, 232, 255, 0.1);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-container {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-submit {
  justify-self: start;
  min-width: 156px;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  align-self: center;
  margin: 0;
  color: rgba(223, 232, 244, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form.is-success .form-status {
  color: var(--green);
}

.contact-form.is-error .form-status {
  color: #ffb8a8;
}

.support-page {
  padding-bottom: 44px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(38px, 6vw, 86px);
  min-height: 100svh;
  padding: 150px 0 104px;
}

.support-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.support-copy::before {
  content: "";
  position: absolute;
  inset: -40px -56px -36px -48px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(2, 4, 5, 0.56) 0%,
    rgba(2, 4, 5, 0.4) 44%,
    rgba(2, 4, 5, 0.16) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.support-copy h1 {
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 520;
}

.support-email-card {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.support-email-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.support-email-card strong {
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 460;
}

.support-form {
  margin-top: 12px;
}

.form-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.08;
}

.field input[type="file"] {
  min-height: auto;
  padding: 12px;
  color: rgba(223, 232, 244, 0.78);
}

.field input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(125, 232, 255, 0.14);
  color: var(--text);
  padding: 9px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
  cursor: pointer;
}

.downloads-page {
  padding-bottom: 96px;
}

.downloads-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  min-height: 100svh;
  padding: 150px 0 96px;
}

.downloads-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.downloads-copy::before {
  content: "";
  position: absolute;
  inset: -40px -56px -36px -48px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(2, 4, 5, 0.56) 0%,
    rgba(2, 4, 5, 0.4) 44%,
    rgba(2, 4, 5, 0.16) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.downloads-copy h1 {
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 520;
}

.downloads-copy .hero-copy {
  color: rgba(223, 232, 244, 0.9);
}

.recommended-download {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 24% 0%, rgba(125, 232, 255, 0.12), transparent 46%),
    radial-gradient(ellipse at 100% 100%, rgba(181, 245, 139, 0.1), transparent 42%),
    rgba(5, 10, 16, 0.76);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
}

.recommended-download-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.recommended-download-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.recommended-download-top strong {
  color: rgba(247, 251, 255, 0.62);
  font-size: 14px;
  font-weight: 500;
}

.recommended-download h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 520;
  line-height: 1;
}

.recommended-download p {
  margin: 0;
  color: rgba(223, 232, 244, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.recommended-download .button {
  justify-self: start;
  min-width: 194px;
}

.download-note {
  max-width: 440px;
  color: rgba(223, 232, 244, 0.62) !important;
  font-size: 13px !important;
}

.downloads-directory {
  display: grid;
  gap: 28px;
  padding: 16px 0 96px;
  scroll-margin-top: 156px;
}

.download-section-heading {
  display: grid;
  max-width: 640px;
}

.download-section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 520;
  line-height: 0.98;
}

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

.download-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 352px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.7);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.download-card.is-recommended {
  border-color: rgba(125, 232, 255, 0.46);
  background:
    radial-gradient(ellipse at 24% 0%, rgba(125, 232, 255, 0.12), transparent 44%),
    rgba(5, 10, 16, 0.78);
}

.download-card.is-recommended::after {
  content: "Recommended";
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 560;
}

.download-card--disabled {
  opacity: 0.72;
}

.download-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: rgba(237, 244, 252, 0.72);
  font-size: 13px;
  font-weight: 560;
  text-transform: uppercase;
}

.download-platform-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(125, 232, 255, 0.16), rgba(181, 245, 139, 0.08));
  color: rgba(247, 251, 255, 0.9);
}

.download-platform-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.download-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 520;
  line-height: 1.04;
}

.download-card p {
  margin: 0;
  color: rgba(223, 232, 244, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(237, 244, 252, 0.72);
  font-size: 12px;
  font-weight: 540;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.download-actions .button {
  min-height: 46px;
}

.download-button-disabled {
  cursor: default;
  opacity: 0.58;
  pointer-events: none;
}

.download-store-button {
  border-color: rgba(125, 232, 255, 0.2);
  color: rgba(237, 244, 252, 0.7);
}

.download-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -2px;
}

.download-text-links a {
  color: rgba(125, 232, 255, 0.88);
  font-size: 13px;
  font-weight: 560;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.download-text-links a:hover,
.download-text-links a:focus-visible {
  color: #ffffff;
}

.download-release-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.66);
  backdrop-filter: blur(20px);
}

.download-release-card div {
  display: grid;
  gap: 6px;
}

.download-release-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.download-release-card strong {
  color: var(--text);
  font-size: 22px;
  font-weight: 520;
}

.download-release-card p {
  margin: 0;
  color: rgba(223, 232, 244, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.day-preview {
  justify-self: end;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 29, 42, 0.82), rgba(6, 11, 18, 0.74)),
    var(--panel);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(28px);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.preview-top strong {
  color: var(--green);
  font-size: 13px;
}

.timeline {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.time-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: stretch;
}

.time {
  padding-top: 13px;
  color: rgba(247, 251, 255, 0.48);
  font-size: 12px;
  font-weight: 500;
}

.event {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.event strong {
  font-size: 14px;
}

.event small {
  color: var(--muted);
  font-size: 12px;
}

.time-row.active .event {
  border-color: rgba(125, 232, 255, 0.42);
  background: linear-gradient(135deg, rgba(125, 232, 255, 0.16), rgba(181, 245, 139, 0.08));
  box-shadow: inset 3px 0 0 var(--cyan);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -32px auto 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(20px);
}

.feature-strip div {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 24px;
  background: rgba(5, 10, 16, 0.72);
}

.feature-strip span {
  color: rgba(125, 232, 255, 0.72);
  font-size: 12px;
  font-weight: 560;
}

.feature-strip strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
}

.demo-section {
  display: grid;
  align-items: center;
  min-height: 90vh;
  padding: 96px 0;
}

.demo-section:nth-of-type(even) {
  justify-items: end;
}

.demo-panel {
  width: min(620px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.7);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
}

.demo-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.demo-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.demo-panel p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.integrations-page {
  padding-bottom: 96px;
}

.integrations-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 720px;
  padding: 132px 0 40px;
}

.integrations-hero-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.integrations-hero-copy::before {
  content: "";
  position: absolute;
  inset: -36px -52px -32px -44px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 42% 48%,
    rgba(2, 4, 5, 0.58) 0%,
    rgba(2, 4, 5, 0.42) 42%,
    rgba(2, 4, 5, 0.18) 68%,
    transparent 100%
  );
  pointer-events: none;
}

.integrations-hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 7vw, 104px);
}

.integrations-hero .hero-copy {
  color: rgba(220, 229, 241, 0.9);
}

.floating-integration-field {
  position: relative;
  min-width: 0;
  height: clamp(460px, 44vw, 620px);
  margin-right: max(-5vw, -72px);
  perspective: 900px;
  transform-style: preserve-3d;
  pointer-events: none;
}

.floating-space-glow {
  display: none;
}

.floating-dainvo-core {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(120px, 12vw, 174px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  filter: none;
  transform: translate(-50%, -50%) translateZ(110px);
  transform-style: preserve-3d;
  animation: floating-core-arrive 1080ms cubic-bezier(0.15, 0.82, 0.18, 1) 420ms both;
  will-change: transform;
}

body.is-page-exiting .floating-dainvo-core {
  animation: floating-core-exit 620ms cubic-bezier(0.58, 0.02, 0.86, 0.42) both;
}

.floating-dainvo-core img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: none;
}

@keyframes floating-core-arrive {
  0% {
    transform:
      translate(-50%, -50%)
      translate3d(0, 480px, -320px)
      rotateX(46deg)
      rotateY(-36deg)
      rotateZ(18deg)
      scale(0.42);
  }

  100% {
    transform: translate(-50%, -50%) translateZ(110px);
  }
}

@keyframes floating-core-exit {
  0% {
    transform: translate(-50%, -50%) translateZ(110px);
  }

  100% {
    transform:
      translate(-50%, -50%)
      translate3d(0, -540px, -300px)
      rotateX(-42deg)
      rotateY(36deg)
      rotateZ(-18deg)
      scale(0.46);
  }
}

.floating-app-icon {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: var(--layer);
  width: var(--size);
  aspect-ratio: 1;
  opacity: calc(var(--opacity) * 0.78);
  transform:
    translate3d(var(--scroll-x, 0px), var(--scroll-y, 0px), var(--z))
    translate(-50%, -50%)
    rotateX(var(--rx))
    rotateY(var(--ry))
    rotateZ(var(--rz));
  transform-style: preserve-3d;
  transition: transform 160ms linear;
  will-change: transform;
  backface-visibility: hidden;
  animation: floating-icon-arrive 1280ms cubic-bezier(0.13, 0.78, 0.18, 1) var(--intro-delay, 0ms) both;
}

body.is-page-exiting .floating-app-icon {
  transition: none;
  animation: floating-icon-exit 700ms cubic-bezier(0.58, 0.02, 0.86, 0.42) var(--exit-delay, 0ms) both;
}

.floating-app-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  animation: floating-icon-bob var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  transform: scale(var(--scale));
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.floating-app-shell::before,
.floating-app-shell::after {
  display: none;
}

.floating-app-icon img {
  display: block;
  width: 74%;
  height: 74%;
  object-fit: contain;
  opacity: 0.6;
  transform: translateZ(24px);
  backface-visibility: hidden;
  mix-blend-mode: normal;
  filter: none;
}

@keyframes floating-icon-bob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 var(--bob);
  }
}

@keyframes floating-icon-arrive {
  0% {
    transform:
      translate3d(
        calc(var(--scroll-x, 0px) + var(--intro-x, 0px)),
        calc(var(--scroll-y, 0px) + var(--intro-y, 0px)),
        calc(var(--z) - 260px)
      )
      translate(-50%, -50%)
      rotateX(calc(var(--rx) + var(--intro-rx, 0deg)))
      rotateY(calc(var(--ry) + var(--intro-ry, 0deg)))
      rotateZ(calc(var(--rz) + var(--intro-rz, 0deg)))
      scale(var(--intro-scale, 0.56));
  }

  100% {
    transform:
      translate3d(var(--scroll-x, 0px), var(--scroll-y, 0px), var(--z))
      translate(-50%, -50%)
      rotateX(var(--rx))
      rotateY(var(--ry))
      rotateZ(var(--rz));
  }
}

@keyframes floating-icon-exit {
  0% {
    transform:
      translate3d(var(--scroll-x, 0px), var(--scroll-y, 0px), var(--z))
      translate(-50%, -50%)
      rotateX(var(--rx))
      rotateY(var(--ry))
      rotateZ(var(--rz));
  }

  100% {
    transform:
      translate3d(
        calc(var(--scroll-x, 0px) + var(--exit-x, 0px)),
        calc(var(--scroll-y, 0px) + var(--exit-y, -620px)),
        calc(var(--z) - 320px)
      )
      translate(-50%, -50%)
      rotateX(calc(var(--rx) + var(--exit-rx, 0deg)))
      rotateY(calc(var(--ry) + var(--exit-ry, 0deg)))
      rotateZ(calc(var(--rz) + var(--exit-rz, 0deg)))
      scale(var(--exit-scale, 0.48));
  }
}

.integration-directory {
  display: grid;
  gap: 44px;
  padding: 18px 0 84px;
}

.integration-group {
  display: grid;
  gap: 16px;
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}

.integration-group-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.integration-group-header span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 560;
  text-transform: uppercase;
}

.integration-group-header strong {
  color: rgba(247, 251, 255, 0.62);
  font-size: 14px;
  font-weight: 500;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.integration-logo {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.92);
}

.integration-logo img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.integration-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.18;
}

.pricing-page {
  padding-bottom: 96px;
  font-family: var(--font-body);
}

.pricing-card-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.pricing-directory {
  display: grid;
  gap: 28px;
  padding: 150px 0 96px;
  scroll-margin-top: 156px;
}

.pricing-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.pricing-section-heading > div:first-child {
  display: grid;
  max-width: 780px;
}

.pricing-section-heading h2,
.pricing-afterword-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 520;
  line-height: 0.98;
}

.pricing-billing-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.pricing-billing-toggle button {
  min-width: 104px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(237, 244, 252, 0.7);
  cursor: pointer;
  font-size: 13px;
  font-weight: 560;
  transition: background-color 180ms ease, color 180ms ease;
}

.pricing-billing-toggle button:hover,
.pricing-billing-toggle button:focus-visible,
.pricing-billing-toggle button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 430px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(18, 20, 23, 0.58);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 28, 32, 0.66);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pricing-card-featured {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(22, 24, 28, 0.68);
}

.pricing-card-muted {
  opacity: 0.72;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 520;
  line-height: 1.04;
}

.pricing-card p {
  margin: 0;
  color: rgba(223, 232, 244, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-price {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.pricing-price strong {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 420;
  line-height: 0.96;
}

.pricing-price span {
  color: rgba(223, 232, 244, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(223, 232, 244, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(181, 245, 139, 0.28);
  transform: translateY(-50%);
}

.pricing-card-muted li::before {
  background: rgba(237, 244, 252, 0.48);
  box-shadow: none;
}

.pricing-card-action {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  text-align: center;
}

.pricing-disabled-action {
  cursor: default;
  opacity: 0.58;
  pointer-events: none;
}

.pricing-footnote {
  max-width: 760px;
  margin: 2px 0 0;
  color: rgba(223, 232, 244, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.pricing-afterword {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.64fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
  padding: 24px 0 118px;
}

.pricing-afterword-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
  max-width: 740px;
}

.pricing-afterword-copy::before {
  content: "";
  position: absolute;
  inset: -38px -52px -34px -46px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 40% 48%,
    rgba(2, 4, 5, 0.5) 0%,
    rgba(2, 4, 5, 0.34) 46%,
    rgba(2, 4, 5, 0.12) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.pricing-afterword-copy p:not(.support-line) {
  margin: 24px 0 0;
  color: rgba(223, 232, 244, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.pricing-feature-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.62);
  color: rgba(237, 244, 252, 0.82);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.35;
  backdrop-filter: blur(18px);
}

.resources-page,
.resource-article-page {
  padding-bottom: 96px;
  overflow-x: clip;
}

.reader-mode-controls {
  position: fixed;
  top: 112px;
  right: max(24px, calc((100vw - var(--content-max)) / 2));
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 10, 16, 0.68);
  color: rgba(237, 244, 252, 0.76);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.reader-mode-label {
  color: inherit;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reader-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px 0 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 620;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.reader-mode-toggle:hover,
.reader-mode-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.reader-mode-toggle:active {
  transform: translateY(1px);
}

.reader-mode-track {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.reader-mode-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, background-color 180ms ease;
}

.reader-mode-toggle[aria-pressed="true"] .reader-mode-track {
  background: rgba(6, 16, 20, 0.18);
}

.reader-mode-toggle[aria-pressed="true"] .reader-mode-track span {
  transform: translateX(14px);
  background: #061014;
}

body.is-resource-light-mode {
  color-scheme: light;
}

body.is-resource-light-mode .reader-mode-controls {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 24, 39, 0.72);
}

body.is-resource-light-mode .reader-mode-toggle {
  background: rgba(17, 24, 39, 0.1);
  color: #061014;
}

body.is-resource-light-mode .resources-hero-copy,
body.is-resource-light-mode .resource-article-header {
  padding: clamp(18px, 3vw, 28px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #061014;
  box-shadow: none;
  backdrop-filter: none;
}

body.is-resource-light-mode .resources-hero-copy::before,
body.is-resource-light-mode .resource-article-header::before {
  inset: -30px -56px -28px -30px;
  border-radius: 42px;
  background:
    radial-gradient(
      ellipse at 32% 48%,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.66) 42%,
      rgba(255, 255, 255, 0.26) 70%,
      rgba(255, 255, 255, 0) 100%
    );
  opacity: 1;
  backdrop-filter: blur(12px);
}

body.is-resource-light-mode .resource-section-heading,
body.is-resource-light-mode .resource-section-heading > div:first-child,
body.is-resource-light-mode .resource-breadcrumb {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
  padding: 8px 0;
}

body.is-resource-light-mode .resource-section-heading {
  width: auto;
  padding: 0;
}

body.is-resource-light-mode .resource-section-heading > div:first-child::before,
body.is-resource-light-mode .resource-breadcrumb::before {
  content: "";
  position: absolute;
  inset: -28px -88px -24px -28px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at 22% 48%,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.52) 38%,
      rgba(255, 255, 255, 0.2) 66%,
      rgba(255, 255, 255, 0) 100%
    );
  backdrop-filter: blur(12px);
  pointer-events: none;
}

body.is-resource-light-mode .resource-breadcrumb {
  padding: 4px 0;
}

body.is-resource-light-mode .resource-breadcrumb::before {
  inset: -10px -38px -10px -16px;
}

body.is-resource-light-mode .resources-hero h1,
body.is-resource-light-mode .resource-section-heading h2,
body.is-resource-light-mode .resource-article-header h1,
body.is-resource-light-mode .resource-article-body h2,
body.is-resource-light-mode .resource-article-body h3,
body.is-resource-light-mode .resource-article-body h4,
body.is-resource-light-mode .resource-card-title,
body.is-resource-light-mode .resource-article-body strong,
body.is-resource-light-mode .resource-article-body th {
  color: #061014;
}

body.is-resource-light-mode .resources-page .hero-copy,
body.is-resource-light-mode .resource-article-header .hero-copy,
body.is-resource-light-mode .resource-card-copy,
body.is-resource-light-mode .resource-article-body,
body.is-resource-light-mode .resource-article-body p,
body.is-resource-light-mode .resource-article-body li,
body.is-resource-light-mode .resource-article-body td,
body.is-resource-light-mode .resource-article-meta,
body.is-resource-light-mode .resource-breadcrumb,
body.is-resource-light-mode .resource-breadcrumb a,
body.is-resource-light-mode .resource-article-toc a {
  color: rgba(10, 18, 28, 0.78);
}

body.is-resource-light-mode .resource-card,
body.is-resource-light-mode .resource-article-body,
body.is-resource-light-mode .resource-article-toc,
body.is-resource-light-mode .resource-article-meta span,
body.is-resource-light-mode .dainvo-article-intro,
body.is-resource-light-mode .dainvo-verdict-box,
body.is-resource-light-mode .dainvo-faq,
body.is-resource-light-mode .dainvo-source-note,
body.is-resource-light-mode .dainvo-sources,
body.is-resource-light-mode .dainvo-cta,
body.is-resource-light-mode .dainvo-split-panel,
body.is-resource-light-mode .dainvo-workflow-card,
body.is-resource-light-mode .dainvo-table-wrap {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.is-resource-light-mode .resource-card:hover,
body.is-resource-light-mode .resource-card:focus-visible {
  border-color: rgba(17, 24, 39, 0.2);
  background: rgba(255, 255, 255, 0.94);
}

body.is-resource-light-mode .resource-article-body {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
}

body.is-resource-light-mode .resource-card-kicker,
body.is-resource-light-mode .resource-article-toc strong,
body.is-resource-light-mode .dainvo-split-label,
body.is-resource-light-mode .support-line {
  color: #096b7c;
}

body.is-resource-light-mode .resource-card-media,
body.is-resource-light-mode .resource-article-hero-image img,
body.is-resource-light-mode .resource-article-body img {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(17, 24, 39, 0.05);
}

body.is-resource-light-mode .resource-article-body a {
  color: #155e75;
}

body.is-resource-light-mode .resource-article-body th {
  background: rgba(17, 24, 39, 0.06);
}

body.is-resource-light-mode .resource-article-body th,
body.is-resource-light-mode .resource-article-body td,
body.is-resource-light-mode .related-resources,
body.is-resource-light-mode .resource-article-body hr {
  border-color: rgba(17, 24, 39, 0.12);
}

body.is-resource-light-mode .resource-article-body figcaption {
  color: rgba(10, 18, 28, 0.62);
}

body.is-resource-light-mode .resources-page .button.secondary,
body.is-resource-light-mode .resource-article-page .button.secondary {
  border-color: rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #061014;
}

body.is-resource-light-mode .resources-page .button.secondary:hover,
body.is-resource-light-mode .resources-page .button.secondary:focus-visible,
body.is-resource-light-mode .resource-article-page .button.secondary:hover,
body.is-resource-light-mode .resource-article-page .button.secondary:focus-visible {
  border-color: rgba(17, 24, 39, 0.26);
  background: rgba(255, 255, 255, 0.82);
}

.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: 100svh;
  padding: 148px 0 96px;
}

.resources-hero-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.resources-hero-copy::before,
.resource-article-header::before {
  content: "";
  position: absolute;
  inset: -38px -56px -34px -46px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at 38% 48%,
    rgba(2, 4, 5, 0.58) 0%,
    rgba(2, 4, 5, 0.36) 48%,
    rgba(2, 4, 5, 0.12) 74%,
    transparent 100%
  );
  pointer-events: none;
}

.resources-hero h1,
.resource-article-header h1 {
  display: grid;
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.resources-hero-shot,
.resource-article-hero-image {
  position: relative;
  margin: 0;
  min-width: 0;
}

.resources-hero-shot::before,
.resource-article-hero-image::before {
  content: "";
  position: absolute;
  inset: 16% 8% -8%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 44%, rgba(125, 232, 255, 0.18), transparent 32%),
    radial-gradient(circle at 64% 52%, rgba(181, 245, 139, 0.14), transparent 36%);
  filter: blur(24px);
}

.resources-hero-shot img,
.resource-article-hero-image img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.66);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.resource-directory {
  display: grid;
  gap: 28px;
  padding: 12px 0 118px;
}

.resource-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.resource-section-heading > div:first-child {
  display: grid;
  max-width: 780px;
}

.resource-section-heading h2,
.related-resources h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
}

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

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

.resource-card {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 14, 22, 0.68);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(15, 22, 32, 0.78);
}

.resource-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.resource-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.resource-card-title {
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 420;
  line-height: 1.08;
}

.resource-card-copy {
  color: rgba(223, 232, 244, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.resource-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  padding: 150px 0 118px;
}

.resource-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  color: rgba(223, 232, 244, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.resource-breadcrumb a {
  color: rgba(237, 244, 252, 0.76);
}

.resource-breadcrumb a:hover,
.resource-breadcrumb a:focus-visible {
  color: #ffffff;
}

.resource-article-header {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 20px;
  min-width: 0;
  width: 100%;
  max-width: 960px;
}

.resource-article-header h1 {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.resource-article-header .hero-copy,
.resource-article-header .hero-actions {
  min-width: 0;
  max-width: 100%;
}

.resource-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  color: rgba(223, 232, 244, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.resource-article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.resource-article-hero-image {
  width: min(100%, 920px);
  max-width: 100%;
}

.resource-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
}

.resource-article-toc {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.62);
  backdrop-filter: blur(18px);
}

.resource-article-toc strong {
  color: rgba(125, 232, 255, 0.86);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.resource-article-toc a {
  color: rgba(237, 244, 252, 0.72);
  font-size: 13px;
  line-height: 1.38;
}

.resource-article-toc a:hover,
.resource-article-toc a:focus-visible {
  color: #ffffff;
}

.resource-article-body {
  min-width: 0;
  max-width: 860px;
  color: rgba(230, 238, 248, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.resource-article-body section,
.resource-article-body .dainvo-article-intro {
  display: grid;
  gap: 16px;
}

.resource-article-body section + section {
  margin-top: 48px;
}

.resource-article-body h2,
.resource-article-body h3,
.resource-article-body h4 {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0;
}

.resource-article-body h2 {
  padding-top: 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  scroll-margin-top: 132px;
}

.resource-article-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.resource-article-body p,
.resource-article-body ul,
.resource-article-body ol,
.resource-article-body figure,
.resource-article-body table {
  margin: 0;
}

.resource-article-body ul,
.resource-article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.resource-article-body li {
  padding-left: 4px;
}

.resource-article-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-article-body strong {
  color: #ffffff;
  font-weight: 620;
}

.resource-article-body hr {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
}

.resource-article-body img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.resource-article-body figcaption {
  margin-top: 10px;
  color: rgba(223, 232, 244, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.dainvo-article-intro,
.dainvo-verdict-box,
.dainvo-faq,
.dainvo-source-note,
.dainvo-sources,
.dainvo-cta {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dainvo-split-visual,
.dainvo-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dainvo-split-panel,
.dainvo-workflow-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.dainvo-split-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dainvo-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 10, 16, 0.62);
}

.resource-article-body table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  color: rgba(230, 238, 248, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.resource-article-body th,
.resource-article-body td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.resource-article-body th {
  color: #ffffff;
  font-weight: 620;
  background: rgba(255, 255, 255, 0.05);
}

.resource-article-body tr:last-child th,
.resource-article-body tr:last-child td {
  border-bottom: 0;
}

.dainvo-article-image {
  display: grid;
  gap: 10px;
}

.dainvo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.92);
  color: #061014;
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.related-resources {
  display: grid;
  gap: 28px;
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--page-gutter));
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px 0 54px;
  color: rgba(230, 238, 248, 0.82);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(28px, 4vw, 58px);
  padding: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--text);
  font-size: 26px;
  font-weight: 400;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand-block p,
.footer-column p {
  margin: 0;
  color: rgba(210, 221, 234, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-column h2 {
  margin: 0 0 4px;
  color: rgba(125, 232, 255, 0.86);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(237, 244, 252, 0.76);
  font-size: 14px;
  line-height: 1.4;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(210, 221, 234, 0.56);
  font-size: 13px;
}

.legal-page {
  color-scheme: light;
  min-height: 100%;
  background: #ffffff;
  color: #111827;
}

.legal-page .skip-link {
  background: #111827;
  color: #ffffff;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 25px;
  font-weight: 400;
}

.legal-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: #111827;
}

.legal-main {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 76px;
  scroll-margin-top: 96px;
}

.legal-document {
  scroll-margin-top: 108px;
}

.legal-document h1 {
  margin: 0 0 30px;
  color: #05070a;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 520;
  line-height: 0.98;
}

.legal-content {
  color: #273142;
  font-size: 17px;
  line-height: 1.76;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0 0 20px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 560;
  line-height: 1.16;
}

.legal-content h3 {
  margin: 28px 0 10px;
  color: #172033;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.24;
}

h1,
.product-hero h1,
.product-copy h2,
.contact-copy h2,
.support-copy h1,
.form-heading h2,
.downloads-copy h1,
.recommended-download h2,
.download-section-heading h2,
.download-card h3,
.download-release-card strong,
.pricing-section-heading h2,
.pricing-card h3,
.pricing-price strong,
.pricing-afterword-copy h2,
.resources-hero h1,
.resource-section-heading h2,
.resource-card-title,
.resource-article-header h1,
.resource-article-body h2,
.resource-article-body h3,
.resource-article-body h4,
.demo-panel h2,
.integrations-hero h1,
.legal-document h1,
.legal-content h2,
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.pricing-card p,
.pricing-price span,
.pricing-card li,
.pricing-footnote,
.pricing-afterword-copy p:not(.support-line),
.pricing-feature-grid span {
  font-family: var(--font-body);
}

.support-line,
.button,
.site-nav .nav-link,
.site-action,
.mobile-menu-link,
.recommended-download-top span,
.download-card-head,
.download-meta span,
.download-text-links a,
.download-release-card span,
.pricing-card-top span,
.pricing-billing-toggle button,
.reader-mode-label,
.reader-mode-toggle,
.resource-card-kicker,
.resource-article-toc strong,
.footer-column h2,
.legal-nav {
  font-family: var(--font-display);
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.legal-content a {
  color: #1769aa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-site-footer {
  width: min(1120px, calc(100% - 48px));
  max-width: none;
  padding-bottom: 44px;
  color: #334155;
}

.legal-site-footer .site-footer-inner {
  border-top-color: #e5e7eb;
}

.legal-site-footer .footer-brand,
.legal-site-footer .footer-column a {
  color: #111827;
}

.legal-site-footer .footer-brand-block p,
.legal-site-footer .footer-column p,
.legal-site-footer .footer-copyright {
  color: #64748b;
}

.legal-site-footer .footer-column h2 {
  color: #334155;
}

.legal-site-footer .footer-copyright {
  border-top-color: #e5e7eb;
}

@media (max-width: 860px) {
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(720px, calc(100% - 32px));
    gap: 14px;
  }

  .legal-nav {
    justify-content: flex-start;
  }

  .legal-main,
  .legal-site-footer {
    width: min(720px, calc(100% - 32px));
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-bottom: 42px;
  }

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

  .footer-brand-block {
    grid-column: auto;
  }

  .legal-main {
    padding: 54px 0 60px;
  }

  .legal-document h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .legal-content {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 860px) {
  :root {
    --page-gutter: 32px;
    --mobile-hero-top-space: calc(168px + env(safe-area-inset-top, 0px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    max-width: 720px;
    gap: 14px;
  }

  .site-section {
    max-width: 720px;
  }

  .site-nav {
    display: none;
  }

  .desktop-action {
    display: none;
  }

  .site-header.is-menu-open {
    z-index: 12;
  }

  .mobile-menu-toggle {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 999px;
    background: radial-gradient(
      ellipse at center,
      rgba(2, 4, 5, 0.82) 0%,
      rgba(2, 4, 5, 0.58) 54%,
      rgba(2, 4, 5, 0.22) 78%,
      transparent 100%
    );
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 16px rgba(247, 251, 255, 0.22);
    transition:
      transform 180ms ease,
      opacity 140ms ease;
  }

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

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

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

  .mobile-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    display: grid;
    gap: 8px;
    width: min(320px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 8px;
    background:
      radial-gradient(ellipse at 52% 20%, rgba(20, 29, 40, 0.98) 0%, rgba(7, 12, 18, 0.98) 46%, rgba(2, 4, 5, 0.98) 100%),
      #020405;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin-bottom: 2px;
    padding: 2px 12px 10px;
    color: var(--text);
    font-size: 24px;
    font-weight: 400;
  }

  .mobile-menu-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(125, 232, 255, 0.26));
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--soft);
    font-size: 14px;
    font-weight: 450;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible,
  .mobile-menu-link[aria-current="page"] {
    color: var(--text);
  }

  .mobile-menu-action {
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: var(--mobile-hero-top-space);
  }

  .product-hero {
    gap: 38px;
    padding-bottom: 76px;
  }

  .focus-scroll-section,
  .product-hero.focus-scroll-section {
    min-height: auto;
    padding: 0;
  }

  .focus-scroll-section + .focus-scroll-section {
    margin-top: 0;
  }

  .focus-frame {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .product-hero .focus-frame,
  .product-story .focus-frame,
  .product-story--tasks .focus-frame {
    grid-template-columns: 1fr;
  }

  .product-hero .focus-frame {
    gap: 38px;
    padding: var(--mobile-hero-top-space) 0 76px;
  }

  .product-hero h1 {
    font-size: clamp(54px, 12vw, 86px);
    max-width: min(100%, 12.6ch);
  }

  .product-shot--hero,
  .product-shot--wide {
    justify-self: stretch;
    width: 100%;
    transform:
      perspective(1000px)
      rotateX(3deg)
      rotateY(-2deg);
  }

  .product-shot--hero {
    justify-self: center;
    width: min(100%, 520px);
  }

  .product-story,
  .product-story--tasks {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 82px 0;
  }

  .product-story.focus-scroll-section,
  .product-story--tasks.focus-scroll-section {
    padding: 0;
  }

  .product-story .focus-frame,
  .product-story--tasks .focus-frame {
    gap: 30px;
    padding: 82px 0;
  }

  .product-story--tasks .product-copy {
    order: -1;
  }

  .product-copy {
    max-width: 620px;
  }

  .product-copy h2 {
    font-size: clamp(40px, 9vw, 66px);
  }

  .product-copy::before,
  .product-hero-copy::before {
    inset: -30px -30px -28px;
  }

  .product-close {
    min-height: auto;
    padding: 82px 0 110px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 82px 0 110px;
  }

  .support-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: var(--mobile-hero-top-space) 0 92px;
  }

  .support-copy::before {
    inset: -30px -30px -28px;
  }

  .downloads-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: var(--mobile-hero-top-space) 0 82px;
  }

  .downloads-copy::before {
    inset: -30px -30px -28px;
  }

  .pricing-directory {
    padding-top: var(--mobile-hero-top-space);
  }

  .pricing-section-heading {
    align-items: start;
    flex-direction: column;
  }

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

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

  .pricing-afterword {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 16px 0 96px;
  }

  .pricing-afterword-copy::before {
    inset: -30px -30px -28px;
  }

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

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

  .download-release-card {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-copy {
    max-width: 620px;
  }

  .contact-copy h2 {
    font-size: clamp(40px, 9vw, 66px);
  }

  .contact-copy::before {
    inset: -30px -30px -28px;
  }

  .day-preview {
    justify-self: stretch;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .integrations-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding-top: var(--mobile-hero-top-space);
  }

  .floating-integration-field {
    justify-self: center;
    width: min(100%, 640px);
    height: clamp(340px, 58vw, 460px);
    margin: 0 auto;
  }

  .floating-app-icon {
    width: calc(var(--size) * 0.82);
  }

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

  .site-main.resources-page,
  .site-main.resource-article-page {
    animation: none;
    transform: none;
  }

  .resources-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: calc(132px + env(safe-area-inset-top, 0px)) 0 72px;
  }

  .resources-hero-copy::before,
  .resource-article-header::before {
    inset: -30px -30px -28px;
  }

  .resources-hero-shot {
    justify-self: center;
    width: min(100%, 640px);
  }

  .resource-section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .resource-article {
    padding-top: calc(132px + env(safe-area-inset-top, 0px));
  }

  .resource-article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resource-article-toc {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-article-toc strong {
    grid-column: 1 / -1;
  }

  .reader-mode-controls {
    top: calc(96px + env(safe-area-inset-top, 0px));
    right: 16px;
  }

}

@media (max-width: 560px) {
  :root {
    --mobile-hero-top-space: calc(176px + env(safe-area-inset-top, 0px));
  }

  .site-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 15px;
  }

  .reader-mode-controls {
    top: auto;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 24px);
    padding: 7px;
  }

  .reader-mode-label {
    display: none;
  }

  .reader-mode-toggle {
    min-width: 44px;
    min-height: 38px;
    padding: 0 7px;
  }

  .reader-mode-toggle [data-reader-mode-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .brand {
    min-height: 62px;
    padding: 5px 14px 5px 8px;
  }

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

  .support-line {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 66px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .product-hero {
    padding-bottom: 58px;
  }

  .product-hero .focus-frame {
    padding: var(--mobile-hero-top-space) 0 58px;
  }

  .product-shot::before {
    inset: 12% 6% -4%;
    filter: blur(18px);
  }

  .product-shot img {
    border-radius: 7px;
    opacity: 0.98;
  }

  .product-shot--hero {
    justify-self: center;
    width: min(100%, 360px);
    transform:
      perspective(900px)
      rotateX(2deg)
      rotateY(-1deg);
  }

  .product-story,
  .product-story--tasks {
    padding: 66px 0;
  }

  .product-story.focus-scroll-section,
  .product-story--tasks.focus-scroll-section {
    padding: 0;
  }

  .product-story .focus-frame,
  .product-story--tasks .focus-frame {
    padding: 66px 0;
  }

  .product-copy h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .product-copy p:not(.support-line) {
    font-size: 17px;
  }

  .product-close {
    padding-bottom: 88px;
  }

  .contact-section {
    padding: 66px 0 88px;
  }

  .support-hero {
    padding: var(--mobile-hero-top-space) 0 76px;
  }

  .support-copy h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .downloads-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .recommended-download {
    padding: 20px;
  }

  .recommended-download h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .recommended-download .button {
    width: 100%;
  }

  .pricing-billing-toggle {
    width: 100%;
  }

  .pricing-billing-toggle button {
    flex: 1 1 0;
    min-width: 0;
  }

  .download-section-heading h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .pricing-section-heading h2,
  .pricing-afterword-copy h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

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

  .pricing-card {
    padding: 18px;
  }

  .pricing-card h3 {
    font-size: 28px;
  }

  .download-card {
    padding: 18px;
  }

  .download-card h3 {
    font-size: 28px;
  }

  .download-actions .button {
    width: 100%;
  }

  .download-release-card {
    padding: 18px;
  }

  .support-email-card {
    padding: 18px;
  }

  .support-email-card strong {
    font-size: 18px;
  }

  .contact-copy h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .contact-copy p:not(.support-line) {
    font-size: 17px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .integrations-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .floating-integration-field {
    height: 304px;
    margin-inline: -18px;
  }

  .floating-dainvo-core {
    width: 104px;
  }

  .floating-app-icon {
    width: calc(var(--size) * 0.66);
  }

  .floating-app-icon[data-mobile-visible="false"] {
    display: none;
  }

  .integration-group-header {
    display: grid;
    align-items: start;
    gap: 6px;
  }

  .integration-group-header strong {
    font-size: 13px;
  }

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

  .integration-card {
    min-height: 68px;
  }

  .resources-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .resources-hero {
    gap: 24px;
    padding-top: calc(118px + env(safe-area-inset-top, 0px));
    padding-bottom: 60px;
  }

  .resources-hero-copy,
  .resource-article-header {
    width: 100%;
  }

  .resources-hero-copy::before,
  .resource-article-header::before {
    inset: -20px -16px -20px;
    border-radius: 28px;
  }

  body.is-resource-light-mode .resource-section-heading > div:first-child::before {
    inset: -18px -24px -18px -16px;
  }

  .resource-directory {
    padding-bottom: 88px;
  }

  .resource-section-heading h2,
  .related-resources h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .resource-grid,
  .resource-grid--comparisons {
    grid-template-columns: 1fr;
  }

  .resource-card {
    padding: 14px;
  }

  .resource-article {
    gap: 26px;
    padding-top: calc(118px + env(safe-area-inset-top, 0px));
    padding-bottom: 88px;
  }

  .resource-article-header,
  .resource-article-header .hero-copy {
    max-width: 100%;
  }

  .resource-article-header h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.04;
    text-wrap: wrap;
    word-break: break-word;
  }

  .resource-article-meta {
    display: grid;
  }

  .resource-article-body {
    font-size: 16px;
    line-height: 1.68;
  }

  .resource-article-body h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .resource-article-toc,
  .dainvo-split-visual,
  .dainvo-workflow-grid {
    grid-template-columns: 1fr;
  }

  .dainvo-article-intro,
  .dainvo-verdict-box,
  .dainvo-faq,
  .dainvo-source-note,
  .dainvo-sources,
  .dainvo-cta {
    padding: 16px;
  }
}

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

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

  .focus-scroll-section,
  .product-hero.focus-scroll-section {
    min-height: auto;
  }

  .focus-scroll-section + .focus-scroll-section {
    margin-top: 0;
  }

  .focus-frame {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .product-hero .focus-frame {
    padding: 132px 0 82px;
  }

  .product-story .focus-frame {
    padding: 104px 0;
  }
}
