:root {
  color-scheme: dark;
  --bg: #000212;
  --bg-soft: #07091d;
  --text: #fff;
  --muted: #aaabc2;
  --muted-strong: rgba(255, 255, 255, 0.72);
  --purple: #6449d1;
  --purple-soft: #927ebc;
  --magenta: #985199;
  --pink: #ff1c6d;
  --blue: #6ed5fb;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-border: rgba(255, 255, 255, 0.16);
  --container: min(1140px, calc(100vw - 40px));
  --heading: "Syne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 16px 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px) brightness(120%);
  backdrop-filter: blur(15px) brightness(120%);
}

.site-nav a,
.footer-links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 130px 20px 80px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  z-index: -3;
  height: min(70vh, 760px);
  background: linear-gradient(180deg, rgba(0, 2, 18, 0) 0%, rgba(0, 2, 18, 0.82) 42%, var(--bg) 72%, var(--bg) 100%);
  pointer-events: none;
}

.meteor-canvas,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.meteor-canvas {
  z-index: -5;
  opacity: 0.62;
  mix-blend-mode: luminosity;
  -webkit-mask-image: linear-gradient(0deg, transparent 4%, #000 42%, transparent 92%);
  mask-image: linear-gradient(0deg, transparent 4%, #000 42%, transparent 92%);
}

.hero-noise {
  z-index: -4;
  opacity: 0.45;
  background:
    radial-gradient(circle at 50% 44%, rgba(146, 126, 188, 0.22), transparent 34rem),
    linear-gradient(180deg, rgba(0, 2, 18, 0) 0%, rgba(0, 2, 18, 0.42) 62%, var(--bg) 88%, var(--bg) 100%);
}

.hero-shape {
  --base-rotate: 0deg;
  --look-rotate: 0deg;
  --look-x: 0px;
  --look-y: 0px;
  --look-scale: 1;
  --look-brightness: 0;
  --parallax-y: 0px;
  --shape-brightness: 1.12;
  --shape-contrast: 1.04;
  --shape-saturation: 0.9;
  position: absolute;
  z-index: -2;
  width: 165px;
  height: auto;
  border-radius: 999px;
  opacity: 0;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter:
    saturate(var(--shape-saturation))
    brightness(calc(var(--shape-brightness) + var(--look-brightness)))
    contrast(var(--shape-contrast));
  transform: translate3d(var(--look-x), calc(var(--parallax-y) + var(--look-y)), 0) scale(var(--look-scale));
  transform-style: preserve-3d;
  rotate: calc(var(--base-rotate) + var(--look-rotate));
  transition: filter 0.28s ease;
  animation: shape-in 0.9s var(--ease-out) forwards, float-soft 6s ease-in-out infinite;
  will-change: transform, rotate, filter;
}

.hero-shape--one {
  top: 56%;
  left: 10%;
  width: 220px;
  --base-rotate: -12deg;
  --shape-brightness: 1.34;
  --shape-contrast: 1.08;
  --shape-saturation: 0.95;
  animation-delay: 0.65s, 1.7s;
}

.hero-shape--two {
  top: 15%;
  left: 21%;
  width: 134px;
  --base-rotate: 10deg;
  animation-delay: 0.7s, 1.4s;
}

.hero-shape--three {
  top: 31%;
  right: 6%;
  width: 224px;
  --base-rotate: -6deg;
  animation-delay: 0.8s, 1.2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(800px, 100%);
  text-align: center;
}

.hero-title,
.footer-title,
.product-name,
.product-headline {
  margin: 0;
  color: var(--text);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-title {
  min-height: 3.3em;
  margin-bottom: 40px;
  background: linear-gradient(1deg, var(--purple-soft) 0%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.85rem, 5.2vw, 4.7rem);
  line-height: 1.1;
  word-spacing: 5px;
}

.hero-title .lqd-tw-cursor {
  display: inline-block;
  margin-left: 0.02em;
  font: inherit;
  font-weight: inherit;
  line-height: 0.92;
  vertical-align: 0.03em;
  animation: caret 0.9s steps(2, jump-none) infinite;
}

.hero-title [data-typewriter].is-complete .lqd-tw-cursor {
  opacity: 1;
  animation: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  isolation: isolate;
  overflow: visible;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.button > span:not(.button-glow),
.button > svg {
  position: relative;
  z-index: 3;
}

.button svg {
  width: 1.3em;
  height: 1.3em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-out);
}

.button--outline {
  --lqd-outline-glow-w: 1px;
  --lqd-outline-glow-duration: 4.76s;
  --lqd-outline-glow-color: rgba(255, 255, 255, 0.96);
  --lqd-outline-glow-color-secondary: rgba(255, 255, 255, 0);
  background: transparent;
  box-shadow: inset 0 4px 1px rgba(255, 255, 255, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 36px rgba(118, 92, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button--outline::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 50%, rgba(130, 101, 255, 0.34), rgba(130, 101, 255, 0) 68%);
  filter: blur(10px);
  opacity: 0.52;
  pointer-events: none;
}

.button--outline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.13) 44%, rgba(255, 255, 255, 0.035) 54%, rgba(255, 255, 255, 0) 64%) -170% 0 / 230% 100% no-repeat,
    radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.075) 0 0.8px, rgba(255, 255, 255, 0) 1.2px) 0 0 / 30px 30px,
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.06) 0 0.8px, rgba(255, 255, 255, 0) 1.2px) 10px 7px / 38px 38px,
    radial-gradient(circle at 50% -75%, var(--magenta) 0%, var(--purple) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -10px 22px rgba(34, 25, 121, 0.13);
  pointer-events: none;
  animation: button-fill-shimmer 4.76s ease-in-out infinite;
}

.button-glow {
  position: absolute;
  inset: calc(var(--lqd-outline-glow-w, 1px) * -1);
  z-index: 2;
  display: inline-block;
  padding: var(--lqd-outline-glow-w, 1px);
  border-radius: inherit;
  background: var(--lqd-outline-glow-color-secondary, transparent);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.button-glow__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 1;
  border-radius: inherit;
  background: conic-gradient(from 290deg, var(--lqd-outline-glow-color-secondary, transparent) 0%, var(--lqd-outline-glow-color, #fff) 10%, var(--lqd-outline-glow-color-secondary, transparent) 20%);
  animation: lqd-outline-glow-1 var(--lqd-outline-glow-duration, 3s) linear infinite;
}

.button--filled {
  background: transparent;
  box-shadow: 0 0 0 1px rgba(128, 146, 191, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease-out), box-shadow 0.38s var(--ease-out);
}

.button--filled::before,
.button--filled::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.button--filled::before {
  inset: -13px -18px;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(31, 45, 77, 0.32), rgba(31, 45, 77, 0) 68%);
  filter: blur(6px);
  opacity: 0.86;
  transition: opacity 0.38s var(--ease-out), background 0.38s var(--ease-out), filter 0.38s var(--ease-out);
}

.button--filled::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 36%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0) 58%) -165% 0 / 230% 100% no-repeat,
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.065) 0 0.8px, rgba(255, 255, 255, 0) 1.2px) 0 0 / 28px 28px,
    radial-gradient(circle at 74% 58%, rgba(255, 255, 255, 0.052) 0 0.8px, rgba(255, 255, 255, 0) 1.2px) 9px 8px / 36px 36px,
    radial-gradient(circle at 50% -40%, rgba(47, 61, 98, 0.88) 0%, rgba(8, 15, 31, 0.96) 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -12px 22px rgba(0, 0, 0, 0.18);
  transition: background-position 0.58s var(--ease-out), box-shadow 0.38s var(--ease-out), filter 0.38s var(--ease-out);
}

.button--filled:hover,
.button--filled:focus-visible {
  box-shadow: inset 0 0 10px 2px rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 10px 36px rgba(100, 73, 209, 0.2);
}

.button--filled:hover::before,
.button--filled:focus-visible::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(116, 89, 228, 0.42), rgba(116, 89, 228, 0) 70%);
  filter: blur(9px);
  opacity: 1;
}

.button--filled:hover::after,
.button--filled:focus-visible::after {
  background-position: 150% 0, 12px 8px, -8px 22px, 0 0;
  background-image:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 36%, rgba(255, 255, 255, 0.13) 47%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.08) 0 0.8px, rgba(255, 255, 255, 0) 1.2px),
    radial-gradient(circle at 74% 58%, rgba(255, 255, 255, 0.065) 0 0.8px, rgba(255, 255, 255, 0) 1.2px),
    radial-gradient(circle farthest-side at 50% 50%, var(--magenta) 0%, var(--purple) 100%);
  box-shadow: inset 0 0 10px 2px rgba(255, 255, 255, 0.35);
}

.button:hover,
.button:focus-visible {
  transform: scale(1.06);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(0.25em);
}

.button--outline:hover svg,
.button--outline:focus-visible svg {
  transform: translateY(0.18em);
}

.app-download-menu {
  position: relative;
  z-index: 10;
  display: inline-grid;
  justify-items: center;
}

.app-download-toggle {
  cursor: pointer;
}

.app-download-toggle:hover svg,
.app-download-toggle:focus-visible svg {
  transform: translateY(0.18em);
}

.app-download-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.app-download-list {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  gap: 6px;
  width: min(320px, calc(100vw - 40px));
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 88, 190, 0.2), transparent 58%),
    rgba(9, 14, 29, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  -webkit-backdrop-filter: blur(20px) brightness(120%);
  backdrop-filter: blur(20px) brightness(120%);
}

.app-download-menu.is-open .app-download-list {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.app-download-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 12px 8px 8px;
  border-radius: 14px;
  color: var(--text);
  text-align: left;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.app-download-item:hover,
.app-download-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.app-download-item img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
}

.app-download-item span {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-download-item small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.products {
  position: relative;
  overflow: hidden;
  padding: 0 20px 80px;
}

.section-transition {
  display: none;
  pointer-events: none;
}

.section-transition--top {
  margin-bottom: -200px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(146, 126, 188, 0.24), rgba(146, 126, 188, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 1px);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.section-transition--bottom {
  margin-top: -40px;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(146, 126, 188, 0.2), rgba(146, 126, 188, 0) 70%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), transparent 1px);
  -webkit-mask-image: linear-gradient(0deg, #000, transparent 88%);
  mask-image: linear-gradient(0deg, #000, transparent 88%);
}

.apps-list {
  display: grid;
  gap: 80px;
}

.product-section {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  width: min(1510px, calc(100vw - 40px));
  min-height: 1900px;
  margin: 0 auto;
  padding: 150px 20px 160px;
  text-align: center;
  isolation: isolate;
}

.product-section::before,
.product-section::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -3;
  width: min(2300px, 92vw);
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateX(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.product-section::before {
  top: 36px;
  background-image: url("../img/circle-top.svg");
}

.product-section::after {
  bottom: 36px;
  background-image: url("../img/circle-bottom.svg");
}

.product-section > * {
  position: relative;
  z-index: 1;
}

.product-top {
  display: grid;
  justify-items: center;
  gap: 46px;
  width: min(500px, 100%);
  margin: 0 auto;
}

.app-icon-link {
  --icon-rotate-x: 0deg;
  --icon-rotate-y: 0deg;
  --icon-translate-x: 0px;
  --icon-translate-y: 0px;
  --icon-scale: 1;
  display: inline-flex;
  position: relative;
  border-radius: 32px;
  perspective: 1200px;
  transform-style: preserve-3d;
  outline: none;
}

.app-icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transform:
    translate3d(var(--icon-translate-x), var(--icon-translate-y), 0)
    rotateX(var(--icon-rotate-x))
    rotateY(var(--icon-rotate-y))
    scale(var(--icon-scale));
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, filter;
}

.app-icon-link:hover .app-icon,
.app-icon-link:focus-visible .app-icon {
  --icon-scale: 1.035;
  filter:
    drop-shadow(0 20px 36px rgba(100, 73, 209, 0.28))
    drop-shadow(0 0 18px rgba(172, 226, 255, 0.2));
}

.product-name {
  background: linear-gradient(0deg, var(--purple-soft) 0%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.7rem, 3.6vw, 3.55rem);
  line-height: 1;
}

.product-desktop-shot {
  position: relative;
  width: min(1131px, calc(100vw - 96px));
  margin: 58px auto 52px;
  perspective: 1200px;
}

.product-desktop-shot::before {
  content: "";
  position: absolute;
  right: -26%;
  bottom: -26%;
  z-index: -1;
  width: 900px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 44% 42%, rgba(255, 28, 109, 0.32), transparent 54%),
    radial-gradient(ellipse at 68% 76%, rgba(110, 213, 251, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 82%, rgba(100, 73, 209, 0.18), transparent 58%);
  filter: blur(42px);
  opacity: 0.76;
  transform-origin: 52% 55%;
  animation: product-glow-pulse 13.5s ease-in-out infinite;
  pointer-events: none;
}

.product-desktop-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#voz-ai .product-desktop-shot,
#vitadel-run .product-desktop-shot {
  width: min(780px, calc(100vw - 96px));
  margin-top: 58px;
  margin-bottom: 54px;
}

#voz-ai .product-desktop-shot::before,
#vitadel-run .product-desktop-shot::before {
  right: -36%;
  bottom: -16%;
  width: 720px;
  height: 540px;
}

.product-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(905px, 100%);
  margin: 0 auto;
  padding: 30px 90px 65px;
  border-radius: 11px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(147, 168, 199, 0.23) 0%, rgba(52, 55, 75, 0) 100%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(80px) brightness(120%) contrast(105%);
  backdrop-filter: blur(80px) brightness(120%) contrast(105%);
}

.product-headline {
  font-size: 28px;
  font-weight: 600;
  line-height: 31px;
}

.product-description {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 24px;
}

.feature-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.feature-item svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s var(--ease-out);
}

.feature-item:hover {
  color: var(--text);
}

.feature-item:hover svg {
  transform: scale(1.16);
}

.product-mobile-shot {
  display: none;
}

.app-store-link {
  display: inline-flex;
  margin-top: 64px;
  perspective: 900px;
}

.app-store-link img {
  width: 260px;
  height: auto;
  transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

.app-store-link:hover img,
.app-store-link:focus-visible img {
  filter: drop-shadow(0 16px 32px rgba(100, 73, 209, 0.32));
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 64%;
  background:
    radial-gradient(70% 70% at 50% 100%, rgba(100, 73, 209, 0.24), transparent 70%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035));
  -webkit-mask-image: linear-gradient(0deg, #000, transparent 88%);
  mask-image: linear-gradient(0deg, #000, transparent 88%);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 60px;
  width: var(--container);
  margin: 0 auto;
}

.footer-title {
  color: var(--text);
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.05;
}

.rotator {
  position: relative;
  display: block;
  min-height: 1.1em;
  background: linear-gradient(0deg, var(--purple-soft) 0%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.rotator.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.footer-rule {
  width: 100%;
  height: 2px;
  margin-top: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform-origin: center;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-links a {
  font-size: 15px;
  line-height: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: rgba(255, 255, 255, 0.59);
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--text);
  transform: translateY(-2px);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

@keyframes caret {
  50% {
    opacity: 0;
  }
}

@keyframes lqd-outline-glow-1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes button-fill-shimmer {
  0% {
    background-position: -170% 0, 0 0, 10px 7px, 0 0;
    filter: brightness(1);
  }

  42% {
    background-position: -25% 0, 12px 8px, -4px 19px, 0 0;
    filter: brightness(1.03);
  }

  100% {
    background-position: 170% 0, 28px 18px, -22px 33px, 0 0;
    filter: brightness(1);
  }
}

@keyframes shape-in {
  from {
    opacity: 0;
    scale: 0.5;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

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

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

@keyframes product-glow-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.96) translate3d(0, 0, 0);
  }

  45% {
    opacity: 0.88;
    transform: scale(1.08) translate3d(-2%, 3%, 0);
  }

  70% {
    opacity: 0.68;
    transform: scale(1.02) translate3d(3%, -2%, 0);
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(1024px, calc(100vw - 40px));
  }

  .brand img {
    width: 200px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 7vw, 4.5rem);
  }

  .hero-shape--one {
    left: -10px;
    width: 192px;
  }

  .hero-shape--two {
    left: 25%;
    width: 122px;
  }

  .hero-shape--three {
    right: -8px;
    width: 198px;
  }

  .products {
    padding-bottom: 100px;
  }

  .product-section {
    width: min(1180px, calc(100vw - 40px));
    min-height: 1640px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .product-section::before,
  .product-section::after {
    width: min(1500px, 118vw);
    height: 700px;
  }

  .product-desktop-shot {
    width: min(1000px, calc(100vw - 64px));
    margin-top: 54px;
    margin-bottom: 50px;
  }

  .product-card {
    width: min(860px, 100%);
    padding: 28px 48px 52px;
  }

  .feature-list {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 18px;
  }

  .site-header {
    width: 100%;
    padding: 15px 20px;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }

  .site-header.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
  }

  body.menu-open .site-header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand img {
    width: 200px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    gap: 12px;
    width: auto;
    height: 55px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }

  .menu-toggle span:not(.menu-toggle__text) {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s var(--ease-out);
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .menu-toggle__text {
    position: static;
    width: auto;
    height: auto;
    margin-left: 30px;
    overflow: visible;
    clip: auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 4px);
    right: 10px;
    left: 10px;
    display: grid;
    gap: 35px;
    padding: 30px 15px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }

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

  .site-nav a {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding: 105px 10px 50px;
  }

  .hero-title {
    min-height: 3.9em;
    margin-bottom: 36px;
    font-size: 8.42vw;
    line-height: 1.3;
    word-spacing: 0;
  }

  .hero-shape--one {
    top: 69%;
    left: -4px;
    width: 126px;
  }

  .hero-shape--two {
    top: 14%;
    left: 6%;
    width: 80px;
  }

  .hero-shape--three {
    top: 13%;
    right: -18px;
    width: 128px;
  }

  .products {
    padding: 0 10px 50px;
  }

  .section-transition {
    height: 160px;
  }

  .section-transition--top {
    margin-bottom: -160px;
  }

  .apps-list {
    gap: 80px;
  }

  .product-section {
    width: min(100%, calc(100vw - 20px));
    min-height: 1280px;
    padding: 96px 0 104px;
  }

  .product-section::before,
  .product-section::after {
    width: 760px;
    height: 370px;
    opacity: 0.72;
  }

  .product-top {
    gap: 30px;
  }

  .app-icon {
    width: 118px;
    height: 118px;
  }

  .product-name {
    font-size: 43px;
    letter-spacing: 0;
  }

  .product-desktop-shot {
    display: none;
  }

  .product-card {
    margin-top: 24px;
    width: min(410px, 100%);
    padding: 30px 20px 34px;
  }

  .feature-list {
    display: grid;
    justify-items: start;
    gap: 20px;
    width: min(330px, 100%);
  }

  .feature-item {
    text-align: left;
  }

  .product-mobile-shot {
    display: block;
    width: min(374px, 100vw - 38px);
    margin: 48px auto 0;
  }

  #voz-ai .product-mobile-shot,
  #vitadel-run .product-mobile-shot {
    width: min(374px, calc(100vw - 38px));
    margin-top: 48px;
  }

  .product-mobile-shot::before {
    content: "";
    position: absolute;
    right: -30%;
    bottom: 2%;
    z-index: -1;
    width: 440px;
    height: 280px;
    border-radius: 50%;
    background:
      radial-gradient(ellipse at 42% 40%, rgba(255, 28, 109, 0.28), transparent 54%),
      radial-gradient(ellipse at 66% 78%, rgba(110, 213, 251, 0.16), transparent 52%);
    filter: blur(28px);
    animation: product-glow-pulse 11s ease-in-out infinite;
  }

  .product-mobile-shot img {
    width: 100%;
    height: auto;
  }

  .app-store-link {
    margin-top: 64px;
  }

  .app-store-link img {
    width: 210px;
  }

  .site-footer {
    padding: 120px 10px 80px;
  }

  .footer-inner {
    gap: 40px;
    width: min(100%, calc(100vw - 20px));
  }

  .footer-title {
    font-size: 45px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-links {
    display: grid;
    gap: 20px;
  }

  .copyright {
    max-width: 28rem;
  }
}

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

  .hero-title .lqd-tw-cursor {
    animation: none !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
