@font-face {
  font-family: "Innovator Grotesk";
  src: url("../fonts/InnovatorGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Innovator Grotesk";
  src: url("../fonts/InnovatorGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Innovator Grotesk";
  src: url("../fonts/InnovatorGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABCDiatype Mono";
  src: url("../fonts/ABCDiatypeMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #08080c;
  --bg-2: #0d0d13;
  --panel: #15151d;
  --panel-2: #1c1c26;
  --panel-3: #232331;
  --text: #f7f4ff;
  --muted: #a9a4b7;
  --muted-2: #777287;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --leo: #634cff;
  --leo-2: #8b78ff;
  --cyan: #18c8ff;
  --cyan-soft: #c7f5ff;
  --lime: #c8ff8c;
  --pink: #ffd4f6;
  --orange: #ffa36c;
  --green: #41e695;
  --danger: #ff6b91;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1180px;
  --pad: 24px;
  --frame-gutter: clamp(30px, 4.8vw, 78px);
  --section-inner-gutter: calc(var(--frame-gutter) + clamp(18px, 2.2vw, 34px));
  --section-title-size: clamp(2.65rem, 3.75vw, 4.2rem);
  --section-title-line: 1.04;
  --section-text-color: #d8d4e4;
  --section-text-size: 1.18rem;
  --section-text-line: 1.5;
  --font: "Innovator Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "ABCDiatype Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(99, 76, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(24, 200, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
}

body.support-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.section {
  padding: 112px 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.7vw, 6.3rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-weight: 500;
}

.section-header {
  max-width: 790px;
  margin-bottom: 40px;
}

.section-header p:last-child,
.section-copy p {
  max-width: 680px;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
  width: calc(100% - 176px);
  min-height: 66px;
  padding: 12px calc(clamp(18px, 2.2vw, 34px) + var(--frame-gutter));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(10, 10, 15, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.28s ease, opacity 0.28s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 15, 0.58);
}

.site-header.is-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
  pointer-events: none;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 34px);
}

.site-nav a,
.nav-support {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.nav-support {
  padding: 0;
  border: 0;
  background: transparent;
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 42px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: var(--leo);
  color: #fff;
  font-weight: 800;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-download:hover,
.header-download:focus-visible {
  background: var(--leo-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  padding: 116px 0 22px;
  background: #030304;
  overflow: hidden;
}

.hero-frame {
  position: relative;
  width: calc(100% - 48px);
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #050506 0%, #020203 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.45);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.44) 26%, transparent 56%),
    radial-gradient(ellipse 78% 62% at 100% 100%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.48) 62%, transparent 86%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(560px, 0.6fr) minmax(0, 0.4fr);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: calc(100vh - 176px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 760px;
  padding-left: var(--frame-gutter);
  padding-right: clamp(0px, 2vw, 20px);
}

.hero-copy h1 {
  max-width: 700px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  right: -3.4%;
  bottom: 0;
  width: 75%;
  height: auto;
  max-width: none;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 40px;
  color: var(--section-text-color);
  font-size: clamp(1.16rem, 1.45vw, 1.3rem);
  line-height: var(--section-text-line);
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 730px;
  margin-bottom: 18px;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  min-width: 178px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-button.primary {
  border-color: transparent;
  background: var(--text);
  color: var(--bg);
}

.download-button:hover,
.download-button:focus-visible {
  border-color: rgba(24, 200, 255, 0.55);
  background: rgba(24, 200, 255, 0.1);
  transform: translateY(-2px);
}

.download-button.primary:hover,
.download-button.primary:focus-visible {
  background: var(--cyan-soft);
  color: #05070a;
}

.download-button img {
  width: 23px;
  height: 23px;
}

.download-button span {
  display: grid;
  gap: 1px;
  font-size: 1.08rem;
  font-weight: 800;
}

.download-button small {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.68;
}

.hero-note {
  margin: 0;
  color: var(--muted-2);
  max-width: 760px;
  font-size: clamp(0.95rem, 1.05vw, 1rem);
  line-height: 1.35;
  white-space: nowrap;
}

.product-section {
  padding: 34px 0 104px;
  background: #030304;
}

.product-frame {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 46px) calc(var(--frame-gutter) + clamp(18px, 2.2vw, 34px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #050506;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 84px);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-overview-card {
  position: relative;
  min-height: 176px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #17171d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.product-overview-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 18%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(99, 76, 255, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.product-overview-card:hover,
.product-overview-card:focus-within {
  border-color: rgba(99, 76, 255, 0.62);
  background:
    radial-gradient(circle at 18% 0%, rgba(99, 76, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    #1a1a22;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.product-overview-card:hover::after,
.product-overview-card:focus-within::after {
  opacity: 1;
}

.product-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.product-overview-card:hover .product-card-icon,
.product-overview-card:focus-within .product-card-icon {
  filter: drop-shadow(0 12px 26px rgba(99, 76, 255, 0.42));
  transform: translateY(-2px) scale(1.04);
}

.product-overview-card h3 {
  max-width: 250px;
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.16;
}

.product-overview-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

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

.product-copy h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.product-copy > p {
  max-width: 640px;
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.privacy-section {
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 104px;
  background: #030304;
}

.privacy-intro {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 96px;
  text-align: center;
}

.privacy-intro h2 {
  max-width: 1120px;
  margin: 0 auto 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.privacy-intro p:not(.eyebrow) {
  max-width: 960px;
  margin: 0 auto;
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.privacy-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.privacy-slider::before,
.privacy-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 220px);
  pointer-events: none;
}

.privacy-slider::before {
  left: 0;
  background: linear-gradient(90deg, #030304 0%, rgba(3, 3, 4, 0) 100%);
}

.privacy-slider::after {
  right: 0;
  background: linear-gradient(270deg, #030304 0%, rgba(3, 3, 4, 0) 100%);
}

.privacy-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 0 24px;
  animation: privacySlide 36s linear infinite;
}

.privacy-slider:hover .privacy-track {
  animation-play-state: paused;
}

.privacy-slider.is-dragging {
  cursor: grabbing;
}

.privacy-slider.is-js .privacy-track,
.privacy-slider.is-manual .privacy-track,
.privacy-slider.is-dragging .privacy-track {
  animation: none;
}

.privacy-slide-card {
  flex: 0 0 clamp(520px, 38vw, 680px);
  min-height: 388px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #121113;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.privacy-slide-card.is-private {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.035), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    #100f11;
}

.privacy-slide-card,
.privacy-slide-card * {
  user-select: none;
}

.privacy-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.privacy-network {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
}

.privacy-network img {
  width: 34px;
  height: 34px;
}

.privacy-slide-top > span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-fields {
  display: grid;
  gap: 32px;
  margin: 0;
}

.privacy-fields dt {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-fields dd {
  position: relative;
  width: min(100%, 430px);
  margin: 0;
  padding: 8px 13px 8px 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.privacy-fields dd::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.privacy-fields dd.is-blurred {
  color: transparent;
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.72);
}

.privacy-fields dd.is-hidden {
  width: fit-content;
  padding-right: 2px;
  background: transparent;
  text-transform: uppercase;
}

@keyframes privacySlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

.tech-section {
  padding: 24px 0 104px;
  background: #000;
}

.tech-frame {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: clamp(42px, 5.4vw, 78px) 0 0;
  background: #000;
  overflow: hidden;
}

.tech-copy {
  max-width: 1200px;
  margin-bottom: clamp(28px, 3vw, 44px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(12px, 2vw, 28px);
  text-align: center;
}

.tech-copy h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.tech-copy p:not(.eyebrow) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.tech-schematic {
  width: 100%;
  aspect-ratio: 1916 / 546;
  background: #000;
  overflow: hidden;
}

.tech-schematic img {
  width: 100%;
  height: auto;
  background: #000;
  transform: translateY(-17.5%);
}

.apps-section {
  background: #000;
}

.apps-section .container {
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.apps-intro {
  max-width: 1200px;
  margin: 0 auto 62px;
  padding: 0 clamp(12px, 2vw, 28px);
  text-align: center;
}

.apps-intro h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.apps-intro p:not(.eyebrow) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.apps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, 370px);
  gap: 16px;
}

.apps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: #000;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.apps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(99, 76, 255, 0.13), rgba(99, 76, 255, 0.05));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.apps-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 16px 16px;
  opacity: 0.52;
  pointer-events: none;
}

.apps-card:first-child {
  grid-row: 1 / span 2;
  min-height: 0;
}

.apps-card-defi::after {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.22) 1.3px, transparent 1.3px),
    url("../../leo_asset/leo/defi_block_card.png");
  background-position:
    center bottom,
    right 2% bottom;
  background-size:
    16px 16px,
    100% auto;
}

.apps-card-nft::after {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.22) 1.3px, transparent 1.3px),
    url("../../leo_asset/leo/nft_block_card.png");
  background-position:
    center bottom,
    right 2% bottom;
  background-size:
    16px 16px,
    100% auto;
}

.apps-card-mint::after {
  display: none;
}

.apps-card-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 70%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.26) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
  background-position: left bottom;
  background-repeat: repeat;
  opacity: 0.64;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 24%, #000 46%, #000 100%);
  pointer-events: none;
}

.apps-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  background-color: #000;
}

.apps-card:hover::before {
  opacity: 1;
}

.apps-card > :not(.apps-card-dots) {
  position: relative;
  z-index: 2;
}

.apps-card-copy {
  display: grid;
  gap: 18px;
  order: -1;
  align-self: start;
}

.apps-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 3.45rem);
  font-weight: 500;
  line-height: 0.98;
}

.apps-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.52;
}

.apps-card ul {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.apps-card-spaced-list ul {
  margin-top: 16px;
}

.apps-card li {
  position: relative;
  padding-left: 28px;
  color: var(--section-text-color);
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
  font-weight: 650;
  line-height: 1.42;
}

.apps-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--leo);
  border-bottom: 2px solid var(--leo);
  transform: rotate(-45deg);
}

.review-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.review-bg-art {
  position: absolute;
  right: clamp(-72px, -1vw, -18px);
  bottom: 0;
  z-index: 0;
  width: min(42vw, 720px);
  max-width: none;
  opacity: 0.5;
  filter: grayscale(1) brightness(2.75) contrast(1.02);
  mix-blend-mode: screen;
  pointer-events: none;
}

.review-section .container {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.anchor-target {
  position: absolute;
  top: 0;
}

.review-layout {
  display: grid;
  gap: clamp(44px, 5vw, 70px);
}

.review-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 28px);
  text-align: center;
}

.review-copy h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  text-align: center;
}

.review-copy > p:not(.eyebrow) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  color: var(--section-text-color);
  font-size: clamp(1.05rem, 1.22vw, 1.16rem);
  line-height: 1.48;
  text-align: center;
}

.review-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 80px);
  row-gap: 26px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.review-points article {
  position: relative;
  min-height: 0;
  padding-left: 64px;
}

.review-points article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.review-points article::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--leo);
  border-bottom: 2px solid var(--leo);
  transform: rotate(-45deg);
}

.review-points h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
  line-height: 1.12;
}

.review-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.22vw, 1.16rem);
  line-height: 1.48;
}

.download-section {
  margin-bottom: 96px;
  padding: 0;
  background: #000;
}

.download-section .container {
  width: calc(100% - 48px);
  max-width: none;
  padding: 92px var(--section-inner-gutter);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01) 46%, rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    #070708;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.download-section .section-header {
  max-width: none;
  margin-bottom: 52px;
}

.download-section .section-header h2 {
  max-width: none;
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.faq-intro h2 {
  margin-bottom: 30px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.download-section .section-header p:last-child {
  max-width: none;
  margin-bottom: 0;
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.download-section .eyebrow {
  color: var(--muted);
  font-size: 0.92rem;
}

.download-section p {
  color: var(--section-text-color);
}

.faq-intro p {
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

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

.download-card {
  display: grid;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(99, 76, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(99, 76, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.download-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.download-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
}

.download-icon img {
  width: 36px;
  height: 36px;
  filter: none;
}

.download-action {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leo);
}

.download-action img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.download-card-body {
  align-self: end;
}

.download-platform {
  display: block;
  margin-bottom: 10px;
  color: var(--leo);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.download-card small {
  color: var(--muted);
}

.download-version {
  align-self: end;
  display: block;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-version span {
  color: var(--leo);
  font-weight: 900;
}

.download-version small {
  font-family: var(--mono);
}

.partners-section {
  padding: 54px 0 108px;
  background: #050506;
}

.partners-wrap {
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
  text-align: center;
}

.partners-wrap > p:not(.partners-eyebrow):not(.partners-more) {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 650;
  line-height: 1.38;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  gap: clamp(30px, 3.8vw, 54px) clamp(28px, 4vw, 56px);
  margin: clamp(48px, 5.6vw, 74px) auto 34px;
}

.partners-grid img {
  display: block;
  max-width: min(100%, 250px);
  max-height: 76px;
  margin: 0 auto;
  object-fit: contain;
}

.partners-more {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-section {
  padding-top: 60px;
}

.faq-page {
  background: #050506;
}

.faq-page-hero {
  padding-top: 154px;
  padding-bottom: 44px;
  background: #050506;
}

.faq-page-hero .container {
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.faq-page-hero h1 {
  max-width: 1180px;
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 3.85vw, 4.2rem);
  line-height: 1.02;
}

.faq-page-hero p:not(.eyebrow) {
  max-width: 1180px;
  color: var(--section-text-color);
  font-size: clamp(1.06rem, 1.34vw, 1.25rem);
  line-height: 1.58;
}

.faq-page-section {
  padding-top: 30px;
  padding-bottom: 126px;
}

.faq-page .faq-intro .eyebrow {
  margin-bottom: 12px;
  font-size: 0.7rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: clamp(42px, 4.2vw, 68px);
  align-items: start;
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.faq-intro {
  position: static;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 840px;
  justify-self: end;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  padding: 0 52px 0 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 900;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--cyan);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.24s ease, opacity 0.18s ease, visibility 0.18s ease;
}

.faq-item.is-open div {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.faq-item p {
  min-height: 0;
  margin: 0;
  padding: 0 18px 18px;
  overflow: hidden;
}

.about-page {
  background: #050506;
}

.about-hero {
  padding-top: 154px;
  padding-bottom: 84px;
  background: #050506;
}

.about-hero-grid,
.about-mission-grid,
.about-card-grid {
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 1120px;
  margin-bottom: 34px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.about-hero-copy p,
.about-mission-copy p {
  max-width: 940px;
  color: var(--section-text-color);
  font-size: var(--section-text-size);
  line-height: var(--section-text-line);
}

.about-hero-media {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 64% 38%, rgba(99, 76, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.88;
}

.about-mission {
  padding: 70px 0 92px;
  background: #050506;
}

.about-mission-grid {
  display: block;
}

.about-mission-copy h2 {
  margin-bottom: 34px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.about-mission-copy {
  max-width: 1040px;
}

.about-mission-copy p + p {
  margin-top: 24px;
}

.about-mission-note {
  color: #f7f4ff;
  font-weight: 700;
}

.about-cards {
  padding: 10px 0 128px;
  background: #050506;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 34px);
}

.about-action-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 86%, rgba(255, 255, 255, 0.075), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.about-action-card:hover {
  border-color: rgba(99, 76, 255, 0.42);
  background:
    radial-gradient(circle at 82% 86%, rgba(99, 76, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  transform: translateY(-3px);
}

.about-action-card h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.about-action-card p {
  max-width: 760px;
  color: var(--section-text-color);
  font-size: clamp(1.06rem, 1.34vw, 1.24rem);
  line-height: 1.55;
}

.about-action-card a,
.about-action-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-action-card button {
  appearance: none;
}

.about-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 46px;
}

.about-action-card a:hover,
.about-action-card a:focus-visible,
.about-action-card button:hover,
.about-action-card button:focus-visible {
  border-color: rgba(99, 76, 255, 0.5);
  background: rgba(99, 76, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .about-hero-grid,
  .about-mission-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy,
  .about-mission-copy {
    max-width: 900px;
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .about-hero-grid,
  .about-mission-grid,
  .about-card-grid {
    width: min(var(--max), calc(100% - 32px));
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .about-hero-media img {
    min-height: 300px;
  }

  .about-mission,
  .about-cards {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .about-action-card {
    border-radius: 20px;
  }

  .about-action-card {
    min-height: 300px;
  }
}

.site-footer {
  padding: 72px 0 38px;
  border-top: 1px solid var(--line);
  background: #060609;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  width: calc(100% - 48px);
  max-width: none;
  padding-left: var(--section-inner-gutter);
  padding-right: var(--section-inner-gutter);
}

.footer-brand img {
  width: 182px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 26px;
}

.footer-links {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, max-content));
  align-content: start;
  justify-content: end;
  column-gap: clamp(42px, 5.5vw, 82px);
  text-align: left;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--text);
  border-color: rgba(99, 76, 255, 0.45);
  background: rgba(99, 76, 255, 0.18);
  transform: translateY(-2px);
}

.footer-social img,
.footer-social svg {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  object-fit: contain;
}

.footer-social svg {
  filter: none;
}

.footer-links a,
.footer-legal-links a {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.copyright {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: center;
  gap: 14px;
}

.footer-bottom-links {
  display: contents;
}

.built-with-aleo {
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.built-with-aleo span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.built-with-aleo strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.built-with-aleo:hover,
.built-with-aleo:focus-visible {
  color: var(--text);
}

.built-with-aleo:hover span,
.built-with-aleo:focus-visible span {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(940px, calc(100% - 48px));
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(16, 16, 23, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.cookie-banner a {
  color: var(--cyan);
  font-weight: 800;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--leo);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(99, 76, 255, 0.28);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cookie-banner button:hover,
.cookie-banner button:focus-visible {
  background: #755fff;
  box-shadow: 0 18px 42px rgba(99, 76, 255, 0.42);
  transform: translateY(-1px);
}

.cookie-banner button:active {
  transform: translateY(0) scale(0.98);
}

.support-widget {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(390px, calc(100vw - 48px));
  height: min(560px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #101018;
  box-shadow: var(--shadow);
}

.support-panel[hidden] {
  display: none;
}

.support-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(99, 76, 255, 0.22), rgba(24, 200, 255, 0.08));
}

.support-kicker {
  margin: 0 0 4px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-panel-header h2 {
  margin: 0;
  font-size: 1.4rem;
}

.support-panel-header span {
  color: var(--muted);
  font-size: 0.84rem;
}

.support-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.support-close svg,
.support-launcher svg,
.support-send svg {
  width: 20px;
  height: 20px;
}

.support-launcher svg {
  width: 27px;
  height: 27px;
}

.support-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.support-message {
  max-width: 86%;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.support-message.is-user {
  justify-self: end;
  background: rgba(99, 76, 255, 0.24);
}

.support-message span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-message p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.support-typing-dots {
  display: flex;
  gap: 5px;
  padding-top: 4px;
}

.support-typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: typing 0.9s infinite ease-in-out;
}

.support-typing-dots i:nth-child(2) {
  animation-delay: 0.12s;
}

.support-typing-dots i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes typing {
  0%, 100% { opacity: 0.32; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.support-input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.support-input:focus {
  border-color: var(--cyan);
}

.support-send {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: var(--leo);
  color: #fff;
}

.support-send:disabled,
.support-input:disabled {
  opacity: 0.58;
  cursor: wait;
}

.support-launcher {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--leo);
  color: #fff;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.support-launcher:hover,
.support-launcher:focus-visible {
  background: var(--leo-2);
  transform: translateY(-2px);
}

.support-icon-close,
.support-launcher.is-open .support-icon-open {
  display: none;
}

.support-launcher.is-open .support-icon-close {
  display: block;
}

.legal-page {
  background: #050506;
  color: #f4f3f7;
}

.legal-hero {
  padding-top: 168px;
  padding-bottom: 64px;
}

.legal-page .container {
  max-width: 1280px;
}

.legal-page .eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.legal-hero h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5.25vw, 5.55rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.56;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-tabs a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  font-weight: 750;
  transition: color 0.2s ease;
}

.legal-tabs a:hover,
.legal-tabs a:focus-visible {
  color: var(--text);
}

.legal-content {
  padding-top: 10px;
  padding-bottom: 126px;
}

.legal-grid {
  display: grid;
  gap: 0;
  max-width: 1040px;
}

.legal-card {
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.legal-card h2 {
  margin-bottom: 22px;
  color: #f4f3f7;
  font-size: clamp(2.15rem, 3.8vw, 4.2rem);
  line-height: 1;
}

.legal-card h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: #f4f3f7;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

.legal-card p {
  max-width: 900px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.68;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f3f7;
}

.legal-page .cookie-banner a {
  color: #f4f3f7;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.legal-page .cookie-banner button {
  background: #f4f3f7;
  color: #050506;
}

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

  .nav-toggle {
    display: block;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .header-download {
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(10, 10, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-support {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .nav-support {
    width: 100%;
    text-align: left;
  }

  .hero-grid,
  .product-layout,
  .review-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 36px;
  }

  .faq-list {
    max-width: none;
    justify-self: stretch;
  }

  .apps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .apps-card:first-child {
    grid-row: auto;
    min-height: 430px;
  }

  .hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .hero-frame {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 0;
  }

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

  .product-copy {
    max-width: 780px;
    order: -1;
  }

  .faq-intro {
    position: static;
  }

}

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

  .section {
    padding: 76px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 10px;
    gap: 10px;
  }

  .brand img {
    width: 142px;
  }

  .header-download {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 92px 0 18px;
  }

  .hero-frame,
  .product-frame {
    width: calc(100% - 24px);
    border-radius: 22px;
    padding: 14px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .hero-copy {
    order: -1;
    padding: 6px 4px 0;
  }

  .hero-copy h1 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .hero-text {
    font-size: var(--section-text-size);
    line-height: var(--section-text-line);
  }

  .hero-note {
    white-space: normal;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .hero-visual img {
    right: -34%;
    bottom: 0;
    width: 172%;
  }

  .download-row {
    display: grid;
  }

  .download-button {
    width: 100%;
  }

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

  .product-section {
    padding: 18px 0 76px;
  }

  .review-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .review-section .container {
    width: min(var(--max), calc(100% - 32px));
    padding-left: 0;
    padding-right: 0;
  }

  .review-copy h2 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .review-points {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .review-points article {
    padding-left: 54px;
  }

  .review-points article::before {
    width: 36px;
    height: 36px;
  }

  .review-points article::after {
    left: 12px;
    top: 12px;
  }

  .apps-section {
    padding-top: 76px;
  }

  .apps-section .container {
    width: min(var(--max), calc(100% - 32px));
    padding-left: 0;
    padding-right: 0;
  }

  .apps-intro {
    margin-bottom: 44px;
  }

  .apps-intro h2 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .apps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .apps-card {
    min-height: 360px;
    padding: 22px;
    border-radius: 20px;
  }

  .apps-card:first-child {
    min-height: 420px;
  }

  .tech-section {
    padding: 18px 0 76px;
  }

  .tech-frame {
    width: calc(100% - 24px);
    padding: 34px 0 0;
  }

  .tech-copy {
    margin-bottom: 28px;
  }

  .tech-copy h2 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .tech-copy p:not(.eyebrow) {
    font-size: var(--section-text-size);
    line-height: var(--section-text-line);
  }

  .tech-schematic {
    height: 245px;
    aspect-ratio: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .tech-schematic::-webkit-scrollbar {
    display: none;
  }

  .tech-schematic img {
    min-width: 860px;
    transform: translateY(-17.5%);
  }

  .privacy-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .privacy-intro {
    width: calc(100% - 32px);
    margin-bottom: 56px;
  }

  .privacy-intro h2 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .privacy-track {
    gap: 14px;
    padding: 0 16px;
    animation-duration: 32s;
  }

  .privacy-slide-card {
    flex-basis: min(86vw, 390px);
    min-height: 330px;
    padding: 22px;
    border-radius: 22px;
  }

  .privacy-slide-top {
    margin-bottom: 38px;
  }

  .privacy-fields {
    gap: 24px;
  }

  .privacy-fields dd {
    width: 100%;
    font-size: 0.78rem;
  }

  .download-section {
    margin-bottom: 58px;
  }

  .download-section .container {
    width: calc(100% - 24px);
    padding: 70px 18px;
    border-radius: 22px;
  }

  .download-version {
    display: grid;
  }

  .download-version small {
    text-align: left;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

  .faq-grid,
  .footer-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: flex-start;
    gap: 40px;
  }

  .footer-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-social {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: 0;
  }

  .footer-bottom-links {
    display: grid;
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-legal-links {
    justify-self: start;
    justify-content: flex-start;
  }

  .built-with-aleo {
    justify-self: start;
  }

  .cookie-banner {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .support-widget {
    right: 14px;
    bottom: 14px;
  }

  .support-panel {
    right: -2px;
    bottom: 72px;
    width: calc(100vw - 28px);
    height: min(560px, calc(100vh - 104px));
  }

  .cookie-banner:not([hidden]) + .support-widget {
    bottom: 154px;
  }

  .legal-hero {
    padding-top: 128px;
  }
}

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

  .header-download {
    display: none;
  }

  .partners-wrap {
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    margin-top: 42px;
  }

  .partners-grid img {
    max-width: 158px;
    max-height: 52px;
  }

  .nav-toggle {
    justify-self: end;
  }

  .cookie-banner:not([hidden]) + .support-widget .support-launcher {
    display: none;
  }

  .legal-card {
    padding: 16px;
  }
}
