:root {
  --ink: #17152a;
  --ink-soft: #4d4865;
  --muted: #767088;
  --paper: #fbf9ff;
  --paper-warm: #ffffff;
  --line: rgba(41, 35, 78, 0.12);
  --violet: #6f2ff3;
  --violet-deep: #2d0b63;
  --magenta: #ff4db8;
  --cyan: #25d9ee;
  --mint: #37e7c5;
  --shadow: 0 28px 80px rgba(28, 16, 88, 0.22);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(249, 247, 255, 0) 0%, rgba(235, 255, 250, 0.42) 52%, rgba(251, 249, 255, 0) 100%),
    var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(43, 30, 95, 0.16);
  backdrop-filter: blur(22px) saturate(1.2);
  transform: translateX(-50%);
  animation: header-enter 780ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.compact {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(23, 16, 62, 0.13);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.trust-row,
.product-badge {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: 1.06rem;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.nav-links {
  gap: clamp(16px, 3vw, 38px);
  color: rgba(23, 21, 42, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-actions {
  justify-self: end;
  gap: 12px;
}

.language-picker {
  position: relative;
  z-index: 2;
}

.language-toggle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(41, 35, 78, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 20px rgba(43, 30, 95, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-toggle:hover,
.language-picker.open .language-toggle {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(43, 30, 95, 0.14);
  transform: translateY(-1px);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(37, 217, 238, 0.35);
  outline-offset: 3px;
}

.language-flag {
  font-size: 1.28rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 50px rgba(43, 30, 95, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px) scale(0.97);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 190ms cubic-bezier(0.2, 0.9, 0.2, 1);
  backdrop-filter: blur(22px) saturate(1.2);
}

.language-picker.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 160ms ease, transform 160ms ease;
}

.language-option:hover,
.language-option.active {
  background: rgba(111, 47, 243, 0.1);
}

.language-option:active {
  transform: scale(0.98);
}

.language-option span {
  font-size: 1.15rem;
}

.language-option strong {
  font-size: 0.9rem;
}

.nav-links a,
.nav-cta,
.button {
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #45d596, #35b967);
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(53, 185, 103, 0.25);
}

.hero {
  --pointer-x: 50%;
  --pointer-y: 45%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --visual-rotate: 1.2deg;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #080711;
  isolation: isolate;
}

.hero-ambient,
.hero-ambient span {
  position: absolute;
  pointer-events: none;
}

.hero-ambient {
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(63, 225, 207, 0.34), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 71, 143, 0.32), transparent 32%),
    radial-gradient(circle at 72% 72%, rgba(85, 118, 255, 0.24), transparent 36%),
    linear-gradient(125deg, #05050c 0%, #0b071a 28%, #171137 54%, #060a17 100%);
}

.ambient-cursor {
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    circle 118px at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.075),
    rgba(56, 230, 211, 0.045) 42%,
    transparent 74%
  );
  mix-blend-mode: screen;
  opacity: 0.82;
  transition: background 120ms ease;
}

.hero-ambient::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 17, 0.78), rgba(8, 7, 17, 0.18) 42%, rgba(8, 7, 17, 0.55)),
    linear-gradient(180deg, rgba(8, 7, 17, 0.22), rgba(8, 7, 17, 0.02) 45%, rgba(8, 7, 17, 0.74));
  content: "";
}

.ambient-ribbon {
  top: -22%;
  width: clamp(190px, 24vw, 420px);
  height: 148%;
  border-radius: 42% 58% 48% 52% / 18% 20% 80% 82%;
  filter: blur(7px) saturate(1.22);
  mix-blend-mode: screen;
  opacity: 0.9;
  transform: rotate(-27deg) translate3d(0, 0, 0);
  will-change: transform;
}

.ribbon-one {
  left: 43%;
  background: linear-gradient(180deg, rgba(255, 64, 124, 0), rgba(255, 73, 135, 0.96) 35%, rgba(255, 188, 215, 0.78) 54%, rgba(84, 255, 236, 0.18) 78%, rgba(84, 255, 236, 0));
  animation: ribbon-drift-a 13s ease-in-out infinite alternate;
}

.ribbon-two {
  left: 55%;
  width: clamp(160px, 20vw, 340px);
  background: linear-gradient(180deg, rgba(41, 219, 255, 0), rgba(50, 225, 255, 0.64) 20%, rgba(255, 87, 170, 0.7) 54%, rgba(118, 76, 255, 0.16) 84%, rgba(118, 76, 255, 0));
  animation: ribbon-drift-b 15s ease-in-out infinite alternate;
}

.ribbon-three {
  left: 69%;
  width: clamp(120px, 16vw, 280px);
  background: linear-gradient(180deg, rgba(112, 79, 255, 0), rgba(112, 79, 255, 0.64) 28%, rgba(40, 231, 200, 0.56) 62%, rgba(40, 231, 200, 0));
  opacity: 0.62;
  animation: ribbon-drift-c 17s ease-in-out infinite alternate;
}

.ribbon-four {
  left: 22%;
  top: -22%;
  width: clamp(120px, 14vw, 250px);
  background: linear-gradient(180deg, rgba(255, 88, 180, 0), rgba(255, 88, 180, 0.44) 34%, rgba(62, 226, 211, 0.36) 68%, rgba(62, 226, 211, 0));
  opacity: 0.5;
  animation: ribbon-drift-d 14s ease-in-out infinite alternate;
}

.ambient-mesh {
  inset: 0;
  background:
    repeating-linear-gradient(116deg, transparent 0 72px, rgba(255, 255, 255, 0.055) 73px 74px, transparent 75px 140px),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.035) 120px 121px, transparent 122px 240px);
  mask-image: linear-gradient(180deg, transparent, black 16%, black 72%, transparent);
  opacity: 0.66;
  animation: trace-slide 22s linear infinite;
}

.ambient-grid {
  inset: 12% 8% 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 68%);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

.ambient-grain {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  opacity: 0.14;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 98px;
}

.hero-copy {
  max-width: 680px;
  padding-top: 36px;
}

.hero-copy > * {
  animation: hero-rise 880ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 280ms;
}

.product-badge {
  width: fit-content;
  gap: 12px;
  min-height: 58px;
  margin-bottom: 28px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(21, 5, 69, 0.22);
  backdrop-filter: blur(20px);
}

.product-badge img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(27, 6, 79, 0.25);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.65rem, 7.6vw, 6rem);
  line-height: 0.94;
  font-weight: 900;
  text-shadow: 0 18px 54px rgba(16, 5, 55, 0.34);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.16rem, 2.2vw, 1.48rem);
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, #39e2c1, #22c4f0);
  color: #08183d;
  box-shadow: 0 16px 36px rgba(27, 209, 217, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(18px);
}

.button.full {
  width: 100%;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.trust-row span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(390px, 92%);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 42px 120px rgba(9, 2, 47, 0.42);
  backdrop-filter: blur(26px);
  opacity: 0;
  transform: perspective(960px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(var(--visual-rotate)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
  animation: visual-materialize 960ms 220ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
  will-change: transform;
}

.hero-visual::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.48), rgba(37, 217, 238, 0.16) 36%, rgba(255, 77, 184, 0.16) 64%, rgba(255, 255, 255, 0.16));
  content: "";
  opacity: 0.72;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.menu-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 32px;
  padding: 0 16px;
}

.menu-bar span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
}

.product-demo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(9, 3, 39, 0.84);
  animation: product-breathe 8s ease-in-out infinite;
}

.product-demo img,
.product-demo video {
  width: 100%;
  aspect-ratio: 668 / 830;
  object-fit: contain;
  object-position: center top;
}

.product-demo video {
  display: block;
  max-height: min(62svh, 560px);
  background: rgba(9, 3, 39, 0.96);
}

.section-kicker,
.panel-label,
.price-label {
  display: block;
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-pad {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-kicker {
  color: #7740f8;
}

.link-demo {
  text-align: center;
}

.link-demo h2,
.feature-band h2,
.privacy-copy h2,
.pricing-copy h2,
.download-section h2,
.faq-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.comparison-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 42px;
}

.comparison-shell.is-swapping code {
  animation: code-swap 520ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
}

.url-panel {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(64, 44, 113, 0.08);
  text-align: left;
}

.url-panel.clean {
  border-color: rgba(36, 204, 179, 0.34);
  background: linear-gradient(135deg, rgba(238, 255, 251, 0.92), rgba(255, 255, 255, 0.74));
}

.url-panel code {
  overflow-wrap: anywhere;
  color: #27233c;
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
}

.cleaning-arrow {
  align-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: #07173e;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(37, 217, 238, 0.22);
}

.removed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.removed-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 77, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 77, 184, 0.08);
  color: #9d276f;
  font-weight: 800;
}

.feature-band {
  width: min(1180px, calc(100% - 40px));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-card,
.price-card,
.faq-list details,
.privacy-points div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 60px rgba(64, 44, 113, 0.08);
}

.feature-card {
  min-height: 255px;
  padding: 28px;
  border-radius: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card:hover {
  border-color: rgba(111, 47, 243, 0.22);
  box-shadow: 0 26px 70px rgba(64, 44, 113, 0.12);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(111, 47, 243, 0.12), rgba(37, 217, 238, 0.18));
  color: var(--violet);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.feature-card p,
.privacy-copy p,
.pricing-copy p,
.download-section p,
.faq-list p,
.price-card p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.privacy-section,
.pricing-section,
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-points div {
  padding: 20px;
  border-radius: 22px;
}

.privacy-points strong,
.privacy-points span {
  display: block;
}

.privacy-points strong {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.privacy-points span {
  color: var(--muted);
}

.pricing-section {
  width: min(1040px, calc(100% - 40px));
}

.price-card {
  padding: 28px;
  border-radius: 30px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.price-value {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.45rem, 4.2vw, 3.55rem);
  line-height: 0.95;
}

.price-value small {
  margin-left: 0.12em;
  font-size: 0.48em;
  letter-spacing: 0;
}

.download-section {
  width: min(1040px, calc(100% - 40px));
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 237, 255, 0.76)),
    linear-gradient(135deg, rgba(111, 47, 243, 0.18), rgba(37, 217, 238, 0.18));
  box-shadow: var(--shadow);
}

.faq-section {
  padding-bottom: 92px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  padding: 18px 22px;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  line-height: 1.28;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(37, 217, 238, 0.28);
  outline-offset: 5px;
  border-radius: 10px;
}

.faq-list p {
  margin: 14px 0 0;
  line-height: 1.62;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.18, 0.9, 0.24, 1),
    filter 760ms cubic-bezier(0.18, 0.9, 0.24, 1),
    transform 760ms cubic-bezier(0.18, 0.9, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(22px);
  }

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

@keyframes visual-materialize {
  from {
    opacity: 0;
    filter: blur(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes product-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

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

@keyframes ribbon-drift-a {
  to {
    transform: rotate(-22deg) translate3d(7vw, 5vh, 0) scale(1.08);
  }
}

@keyframes ribbon-drift-b {
  to {
    transform: rotate(-33deg) translate3d(-6vw, -4vh, 0) scale(1.12);
  }
}

@keyframes ribbon-drift-c {
  to {
    transform: rotate(-21deg) translate3d(-4vw, 6vh, 0) scale(1.02);
  }
}

@keyframes ribbon-drift-d {
  to {
    transform: rotate(-32deg) translate3d(6vw, -5vh, 0) scale(1.1);
  }
}

@keyframes trace-slide {
  to {
    transform: translate3d(-92px, 68px, 0);
  }
}

@keyframes code-swap {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  font-weight: 750;
}

.site-footer > div,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-links a {
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--violet);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 217, 238, 0.14), transparent 28%),
    radial-gradient(circle at 82% 6%, rgba(255, 77, 184, 0.12), transparent 30%),
    var(--paper);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 76px;
}

.legal-main h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  text-shadow: none;
}

.legal-main h2 {
  margin: 42px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-main a {
  color: var(--violet);
  font-weight: 800;
}

.legal-notice {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 77, 184, 0.22);
  border-radius: 18px;
  background: rgba(255, 77, 184, 0.08);
  color: #7a2859;
  font-weight: 760;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(64, 44, 113, 0.08);
}

.legal-card code {
  color: var(--ink);
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(20, 11, 58, 0.2);
  backdrop-filter: blur(24px) saturate(1.25);
  animation: cookie-enter 420ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(41, 35, 78, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cookie-button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #39e2c1, #22c4f0);
  box-shadow: 0 12px 28px rgba(27, 209, 217, 0.24);
}

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

@keyframes cookie-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    gap: 34px;
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .hero-visual {
    width: min(390px, 100%);
    --visual-rotate: 0.8deg;
  }

  .comparison-shell,
  .feature-grid,
  .privacy-section,
  .pricing-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .cleaning-arrow {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: min(100%, 430px);
    padding-top: 0;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(290px, 72vw);
    margin-top: 8px;
    --visual-rotate: 0deg;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 8px 8px 12px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .language-toggle {
    width: 40px;
    height: 40px;
  }

  .language-menu {
    right: -10px;
  }

  .language-flag {
    font-size: 1.12rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    align-content: start;
    padding: 92px 0 52px;
  }

  .hero-copy {
    max-width: min(100%, 390px);
    padding-top: 0;
  }

  .product-badge {
    min-height: 48px;
    padding-right: 14px;
    font-size: 0.82rem;
  }

  .product-badge img {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.9rem, 13.4vw, 4.05rem);
    line-height: 0.98;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-row span {
    padding: 6px 9px;
    font-size: 0.84rem;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(250px, 66vw);
    margin-top: 4px;
    padding: 6px;
    border-radius: 28px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 15px;
    border-radius: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-bar {
    height: 24px;
    padding-inline: 12px;
  }

  .menu-bar span {
    width: 7px;
    height: 7px;
  }

  .product-demo {
    border-radius: 22px;
  }

  .section-pad {
    width: min(100% - 24px, 1120px);
    padding: 78px 0;
  }

  .link-demo h2,
  .feature-band h2,
  .privacy-copy h2,
  .pricing-copy h2,
  .download-section h2,
  .faq-section h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .url-panel,
  .feature-card,
  .price-card,
  .download-section {
    border-radius: 22px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

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