:root {
  color-scheme: dark;
  /* Typography */
  --font-display: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
  --type-nav: 14px;
  --type-body: 16px;
  --type-body-lg: 17px;
  --type-body-sm: 13px;
  --type-label: 14px;
  --type-button: 12px;
  --type-page-h1: 50px;
  --type-page-h2: 36px;
  --type-page-h3: 20px;
  --type-page-subtitle: 17px;
  --type-h1: var(--type-page-h1);
  --type-h2: var(--type-page-h2);
  --type-h3: var(--type-page-h3);
  --type-hero-title: 49px;
  --type-hero-description: 17px;
  --type-trust-copy: 14px;
  --type-trust-strong: 15px;
  --type-benefit-title: 26px;
  --type-benefit-body: 16px;
  --type-meta: 13px;
  --type-icon-arrow: 17px;
  --leading-heading: 1.06;
  --leading-h1: 1.14;
  --leading-hero-h1: 1.14;

  /* Shared layout */
  --page-width: 880px;
  --page-gutter: 40px;
  --page-main-padding-top: calc(var(--header-height) + 40px);
  --page-main-padding-bottom: 64px;
  --shell-max-width: 1200px;
  --header-height: 80px;
  --header-padding-y: 16px;
  --header-padding-x: max(24px, 5vw);
  --header-nav-gap: 20px;
  --header-bg: var(--bg-elevated);
  --header-border: var(--border);
  --footer-padding-top: 32px;
  --footer-padding-bottom: 48px;
  --footer-gap: 20px;
  --footer-links-gap: 20px 32px;
  --footer-bg: var(--surface-strong);
  --footer-border: var(--border);
  --support-width: 500px;
  --legal-note-margin-top: 64px;
  --legal-note-opacity: 0.7;
  --docs-width: 1200px;
  --docs-sidebar-width: 280px;
  --docs-sidebar-padding: 20px;
  --docs-gap: 72px;
  --docs-hero-width: 760px;
  --docs-main-padding-top: calc(var(--header-height) + 56px);
  --docs-section-gap: 80px;
  --docs-card-radius: 20px;
  --docs-card-padding: 28px;
  --docs-filter-height: 44px;
  --type-features-hero: 56px;
  --type-features-intro: 20px;
  --type-features-group: 30px;
  --type-features-item: 20px;
  --type-features-body: 15px;
  --type-features-nav: 14px;
  --doc-anchor-offset: calc(var(--header-height) + 28px);

  --bg-color: #05070b;
  --bg-elevated: rgba(10, 12, 16, 0.84);
  --surface-strong: #0a0d12;
  --surface-soft: rgba(10, 12, 16, 0.74);
  --surface-accent: linear-gradient(165deg, #103144 0%, #03080c 100%);
  --text-main: #f3f5f7;
  --text-muted: rgba(243, 245, 247, 0.72);
  --text-soft: rgba(243, 245, 247, 0.5);
  --accent: #2B93C7;
  --accent-strong: #36a4dc;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 34px 100px rgba(0, 0, 0, 0.38);
  --hero-copy-bg: #090b0f;
  --hero-copy-text: #ffffff;
  --hero-copy-muted: rgba(255, 255, 255, 0.7);
  --hero-panel-outline: rgba(255, 255, 255, 0.06);
  --button-glow: 0 0 30px rgba(88, 215, 255, 0.15);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg-color: #05070b;
    --bg-elevated: rgba(10, 12, 16, 0.84);
    --surface-strong: #0a0d12;
    --surface-soft: rgba(10, 12, 16, 0.74);
    --surface-accent: linear-gradient(145deg, #45beef 0%, #16435c 100%);
    --text-main: #f3f5f7;
    --text-muted: rgba(243, 245, 247, 0.72);
    --text-soft: rgba(243, 245, 247, 0.5);
    --accent: #2B93C7;
    --accent-strong: #36a4dc;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.32);
    --shadow-card: 0 34px 100px rgba(0, 0, 0, 0.38);
    --hero-copy-bg: rgba(7, 9, 11, 0.97);
    --hero-copy-text: #f4f5f3;
    --hero-copy-muted: rgba(244, 245, 243, 0.78);
    --hero-panel-outline: rgba(255, 255, 255, 0.09);
    --button-glow: 0 0 40px rgba(54, 255, 182, 0.22);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--doc-anchor-offset);
  background: var(--bg-color);
}

body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  background: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.skip-link {
  position: fixed;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  z-index: 300;
  padding: 13px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #05070b;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-180%);
  transition: transform 0.22s ease;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-header .header-inner {
  width: min(var(--shell-max-width), 100%);
  margin: 0 auto;
  padding: var(--header-padding-y) var(--header-padding-x);
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  flex-shrink: 0;
}

.site-header .logo img {
  height: 48px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap);
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.site-header nav a {
  color: var(--text-muted);
  font-size: var(--type-nav);
  position: relative;
  padding-block: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.active,
.site-header nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: none;
  opacity: 1;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.8;
  transition: transform 0.24s ease;
}

.site-header nav a:hover::after,
.site-header nav a.active::after,
.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

main {
  flex: 1;
  width: min(var(--page-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: var(--page-main-padding-top) 0 var(--page-main-padding-bottom);
  outline: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: var(--leading-heading);
}

h1 {
  font-size: var(--type-h1);
  line-height: var(--leading-h1);
  margin-bottom: 16px;
}

h2 {
  font-size: var(--type-h2);
  margin-bottom: 16px;
}

h3 {
  font-size: var(--type-h3);
  margin-bottom: 12px;
}

p,
ul {
  margin-bottom: 16px;
  color: var(--text-muted);
}

ul {
  padding-inline-start: 20px;
}

li {
  margin-bottom: 10px;
}

p.subtitle {
  color: var(--text-muted);
  font-size: var(--type-page-subtitle);
  margin-bottom: 40px;
}

section {
  margin-bottom: 40px;
}

section>h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: var(--footer-padding-top) var(--header-padding-x) var(--footer-padding-bottom);
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-content {
  width: min(var(--shell-max-width), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--footer-gap);
}

.footer-links {
  display: flex;
  gap: var(--footer-links-gap);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: var(--type-body-sm);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

.store-badge {
  display: inline-block;
  height: 40px;
  transition: opacity 0.2s ease;
  color: inherit;
}

.store-badge:hover {
  opacity: 0.82;
}

.store-badge img {
  height: 100%;
}

.copyright {
  font-size: var(--type-meta);
  color: var(--text-soft);
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
  text-align: start;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: var(--type-label);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: var(--surface-strong);
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(61, 201, 255, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237b8896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-inline-end: 44px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--text-main);
  color: var(--bg-color);
  padding: 15px 32px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-button:hover {
  opacity: 0.92;
  text-decoration: none;
}

.primary-button:active {
  transform: scale(0.98);
}

.page-home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #010204;
  --home-main-width: 1480px;
  --home-main-gutter: 32px;
  --shell-max-width: var(--home-main-width);
  --home-main-padding-top: 126px;
  --home-main-padding-bottom: 120px;
  --home-frame-radius: 35px;
  --home-frame-padding: 12px;
  --hero-gap: 12px;
  --hero-card-radius: 31px;
  --hero-card-height: 720px;
  --hero-copy-padding-block: 61px;
  --hero-copy-padding-inline: 48px;
  --hero-copy-body-padding-top: 40px;
  --hero-description-width: 448px;
  --hero-actions-gap: 16px;
  --hero-actions-margin-bottom: 34px;
  --hero-button-height: 56px;
  --hero-button-gap: 13px;
  --hero-button-padding-inline-start: 18px;
  --hero-button-padding-block: 7px;
  --hero-button-padding-inline-end: 7px;
  --hero-button-arrow-size: 40px;
  --hero-trust-gap: 12px;
  --hero-visual-phone-height: 88%;
  --hero-visual-phone-shift-x: 0%;
  --benefits-margin-top: 120px;
  --benefits-padding-top: 12px;
  --benefits-padding-bottom: 52px;
  --benefits-grid-gap: 32px 24px;
  --benefits-grid-padding-inline: 16px;
  --benefit-card-padding-inline: 12px;
  --benefit-card-gap: 14px;
  --benefit-icon-size: 88px;
  --benefit-copy-width: 256px;
}

.home-main {
  width: min(var(--home-main-width), calc(100% - var(--home-main-gutter)));
  padding-top: var(--home-main-padding-top);
  padding-bottom: var(--home-main-padding-bottom);
}

.home-frame {
  background: #000103;
  border-radius: var(--home-frame-radius);
  padding: var(--home-frame-padding);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.36);
}

.hero-shell {
  margin-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hero-gap);
  align-items: stretch;
}

.hero-copy-card,
.hero-visual-card {
  border-radius: var(--hero-card-radius);
  overflow: hidden;
  position: relative;
  min-height: var(--hero-card-height);
  height: var(--hero-card-height);
}

.hero-copy-card {
  background: #121212;
  color: var(--hero-copy-text);
  padding: var(--hero-copy-padding-block) var(--hero-copy-padding-inline);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-copy-card::after {
  content: none;
}

.hero-copy-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--hero-copy-body-padding-top);
}

.hero-app-icon {
  width: 72px;
  height: auto;
  aspect-ratio: 254 / 247;
  border-radius: 24px;
  padding: 4.5px;
  background: #ececf1;
  margin-bottom: 0;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero-copy-card h1 {
  color: var(--hero-copy-text);
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: var(--type-hero-title);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: var(--leading-hero-h1);
  letter-spacing: -0.05em;
}

.hero-description {
  font-size: var(--type-hero-description);
  max-width: var(--hero-description-width);
  color: var(--hero-copy-muted);
  margin-bottom: 36px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--hero-actions-gap);
  margin-bottom: var(--hero-actions-margin-bottom);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: var(--hero-button-gap);
  min-height: var(--hero-button-height);
  padding: var(--hero-button-padding-block) var(--hero-button-padding-inline-end) var(--hero-button-padding-block) var(--hero-button-padding-inline-start);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  font-size: var(--type-button);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.hero-button:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--hero-button-arrow-size);
  height: var(--hero-button-arrow-size);
  border-radius: 50%;
  background: #ffffff;
  color: #0b0c0e;
  font-size: var(--type-icon-arrow);
  line-height: 1;
}

.trusted-users {
  display: flex;
  align-items: center;
  gap: var(--hero-trust-gap);
  flex-wrap: nowrap;
}


.trusted-users-copy {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--type-trust-copy);
}

.trusted-users-copy strong {
  color: #ffffff;
  font-size: var(--type-trust-strong);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.trusted-users-copy span {
  font-size: var(--type-trust-copy);
  letter-spacing: -0.01em;
}

.hero-visual-card {
  background: linear-gradient(to top left, #121212 0%, #2b93c7 100%);
  border: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.hero-visual-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-phone {
  align-self: flex-end;
  height: var(--hero-visual-phone-height);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform: translateY(1%);
  pointer-events: none;
}

.benefits-section {
  margin-top: var(--benefits-margin-top);
  margin-bottom: 0;
  padding-block: var(--benefits-padding-top) var(--benefits-padding-bottom);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--benefits-grid-gap);
  padding: 0 var(--benefits-grid-padding-inline);
}

.benefit-card {
  padding: 0 var(--benefit-card-padding-inline);
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--benefit-card-gap);
  transition: none;
}

.benefit-card:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.benefit-icon-wrapper {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.benefit-icon-wrapper::after {
  content: none;
}

.benefit-icon {
  width: var(--benefit-icon-size);
  height: var(--benefit-icon-size);
  opacity: 1;
}

.benefit-card h3 {
  margin-bottom: 0;
  color: #f3f5f7;
  font-size: var(--type-benefit-title);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.benefit-card p {
  margin: 0;
  color: rgba(243, 245, 247, 0.7);
  font-size: var(--type-benefit-body);
  line-height: 1.5;
  max-width: var(--benefit-copy-width);
  margin-inline: auto;
}

.page-support main {
  width: min(var(--support-width), calc(100% - var(--page-gutter)));
}

.support-container {
  width: 100%;
  margin: 0 auto;
}

.contact-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-info p {
  font-size: var(--type-body-sm);
  margin-bottom: 8px;
}

.legal-updated-note {
  margin-top: var(--legal-note-margin-top);
  opacity: var(--legal-note-opacity);
  font-size: var(--type-meta);
}

.hero-copy-card,
.hero-visual-card,
.benefit-card {
  animation: rise-in 0.8s ease both;
}

.hero-visual-card {
  animation-delay: 0.08s;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.12s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.18s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.24s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1199px) {
  :root {
    --type-page-h1: 42px;
    --type-page-h2: 31px;
    --type-hero-title: 36px;
    --type-hero-description: 15px;
    --type-features-hero: 46px;
    --type-features-intro: 18px;
    --type-features-group: 26px;
    --type-features-item: 19px;
    --type-button: 11px;
    --type-trust-copy: 13px;
    --type-trust-strong: 14px;
    --leading-h1: 1.15;
    --leading-hero-h1: 1.15;
    --docs-width: 1080px;
    --docs-sidebar-width: 240px;
    --docs-sidebar-padding: 18px;
    --docs-gap: 56px;
    --docs-hero-width: 640px;
    --docs-main-padding-top: calc(var(--header-height) + 48px);
    --docs-section-gap: 64px;
    --docs-card-padding: 24px;
  }

  .page-home {
    --home-main-gutter: 24px;
    --home-main-padding-top: 117px;
    --home-main-padding-bottom: 100px;
    --home-frame-radius: 30px;
    --home-frame-padding: 10px;
    --hero-gap: 10px;
    --hero-card-height: 608px;
    --hero-copy-padding-block: 38px;
    --hero-copy-padding-inline: 30px;
    --hero-copy-body-padding-top: 32px;
    --hero-description-width: 320px;
    --hero-actions-margin-bottom: 22px;
    --hero-button-height: 51px;
    --hero-trust-gap: 11px;
    --hero-trust-avatar-size: 36px;
    --hero-trust-overlap: -5px;
    --hero-visual-phone-height: 84%;
    --hero-visual-phone-shift-x: 0%;
    --benefits-grid-gap: 40px 28px;
    --benefits-grid-padding-inline: 13px;
  }

  .home-main {
    width: min(1180px, calc(100% - var(--home-main-gutter)));
  }

  .hero-copy-card {
    min-height: var(--hero-card-height);
    height: var(--hero-card-height);
  }

  .hero-app-icon {
    width: 61px;
    height: auto;
    padding: 3.5px;
    margin-bottom: 0;
  }

  .hero-visual-card {
    min-height: var(--hero-card-height);
    height: var(--hero-card-height);
  }

  .hero-copy-card h1 {
    margin-bottom: 18px;
  }

  .hero-description {
    margin-bottom: 26px;
  }

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

@media (max-width: 720px) {
  :root {
    --type-nav: 13px;
    --type-page-h1: 34px;
    --type-page-h2: 27px;
    --type-page-h3: 18px;
    --type-page-subtitle: 16px;
    --type-hero-title: 33px;
    --type-hero-title-rtl: 32px;
    --type-hero-description: 15px;
    --type-features-hero: 38px;
    --type-features-intro: 17px;
    --type-features-group: 24px;
    --type-features-item: 18px;
    --type-features-nav: 13px;
    --type-trust-copy: 12px;
    --type-trust-strong: 13px;
    --type-benefit-title: 22px;
    --type-benefit-body: 15px;
    --page-gutter: 24px;
    --header-height: 72px;
    --header-padding-y: 14px;
    --header-padding-x: 16px;
    --header-nav-gap: 16px;
    --leading-h1: 1.16;
    --leading-hero-h1: 1.17;
    --leading-hero-h1-rtl: 1.24;
    --docs-gap: 32px;
    --docs-main-padding-top: calc(var(--header-height) + 40px);
    --docs-section-gap: 56px;
    --docs-card-padding: 22px;
    --docs-sidebar-padding: 16px;
  }

  .page-home {
    --home-main-width: 100%;
    --home-main-gutter: 16px;
    --home-main-padding-top: 106px;
    --home-main-padding-bottom: 80px;
    --home-frame-radius: 24px;
    --home-frame-padding: 7px;
    --hero-gap: 7px;
    --hero-card-radius: 22px;
    --hero-card-height: auto;
    --hero-copy-padding-block: 28px;
    --hero-copy-padding-inline: 22px;
    --hero-copy-body-padding-top: 24px;
    --hero-actions-margin-bottom: 18px;
    --hero-trust-gap: 10px;
    --hero-trust-avatar-size: 30px;
    --hero-trust-overlap: -4px;
    --hero-visual-phone-height: 90%;
    --hero-visual-phone-shift-x: 0%;
    --benefits-margin-top: 80px;
    --benefits-padding-top: 8px;
    --benefits-padding-bottom: 40px;
    --benefits-grid-gap: 32px;
    --benefits-grid-padding-inline: 8px;
    --benefit-card-padding-inline: 6px;
    --benefit-icon-size: 76px;
    --benefit-copy-width: 272px;
  }

  .home-main {
    width: calc(100% - var(--home-main-gutter));
  }

  .site-header .logo img {
    height: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-copy-card,
  .hero-visual-card {
    height: auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-copy-card {
    min-height: 448px;
  }

  .hero-app-icon {
    width: 56px;
    height: auto;
    border-radius: 19px;
    padding: 3px;
    margin-bottom: 0;
  }

  .hero-description {
    max-width: none;
    margin-bottom: 22px;
  }

  .hero-button {
    width: 100%;
    justify-content: space-between;
  }

  .trusted-users {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hero-visual-card {
    min-height: 416px;
  }

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

  .benefit-icon-wrapper {
    width: auto;
    height: auto;
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Features Documentation Layout */
.page-features {
  position: relative;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(43, 147, 199, 0.18), transparent 65%),
    radial-gradient(900px 600px at -10% 20%, rgba(54, 164, 220, 0.12), transparent 60%),
    var(--bg-color);
}

.page-features::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.7) 0%, rgba(5, 7, 11, 0.2) 40%, rgba(5, 7, 11, 0.9) 100%);
  opacity: 0.65;
}

.page-features main {
  width: min(var(--docs-width), calc(100% - var(--page-gutter)));
  padding-top: var(--docs-main-padding-top);
  padding-bottom: var(--page-main-padding-bottom);
  position: relative;
  z-index: 1;
}

.features-hero {
  text-align: start;
  margin-bottom: 56px;
  max-width: var(--docs-hero-width);
  animation: features-fade-in 0.8s ease both;
}

.features-hero h1 {
  font-size: var(--type-features-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #ffffff;
}

.features-hero .subtitle {
  font-size: var(--type-features-intro);
  line-height: 1.4;
  color: var(--text-soft);
  max-width: 680px;
}

.features-shell {
  display: grid;
  grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
  gap: var(--docs-gap);
  align-items: start;
  position: relative;
}

.features-sidebar {
  position: sticky;
  top: var(--doc-anchor-offset);
  height: calc(100vh - var(--doc-anchor-offset) - 24px);
  padding: var(--docs-sidebar-padding);
  border-radius: var(--docs-card-radius);
  border: 1px solid var(--border);
  background: rgba(9, 11, 15, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-sidebar-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  font-weight: 600;
}

.features-filter {
  display: grid;
  gap: 10px;
}

.features-filter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 600;
}

.features-filter-input {
  height: var(--docs-filter-height);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 14, 0.9);
}

.features-filter-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: var(--type-features-nav);
  outline: none;
}

.features-filter-input input::placeholder {
  color: var(--text-soft);
}

.features-filter-hint {
  font-size: 12px;
  color: var(--text-soft);
  border-radius: 6px;
  padding: 2px 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.features-toc {
  display: grid;
  gap: 18px;
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: none;
}

.features-toc::-webkit-scrollbar {
  display: none;
}

.features-toc .toc-group {
  display: grid;
  gap: 10px;
}

.features-toc .toc-group-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 600;
}

.features-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.features-toc a {
  display: block;
  color: var(--text-muted);
  font-size: var(--type-features-nav);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.features-toc a:hover {
  color: var(--text-main);
  text-decoration: none;
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.features-toc li.active a,
.features-toc a.active {
  color: var(--accent-strong);
  border-color: rgba(43, 147, 199, 0.32);
  background: rgba(43, 147, 199, 0.16);
}

.features-content {
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: var(--docs-section-gap);
}

.feature-group {
  scroll-margin-top: var(--doc-anchor-offset);
}

.group-header {
  margin-bottom: 32px;
}

.group-header h2 {
  font-size: var(--type-features-group);
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.group-header p {
  font-size: var(--type-body-lg);
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-list {
  display: grid;
  gap: 28px;
}

.feature-doc {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  scroll-margin-top: var(--doc-anchor-offset);
}

.feature-doc:hover {
  transform: none;
}

.feature-doc h3 {
  font-size: var(--type-features-item);
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

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

.feature-doc li {
  position: relative;
  padding-left: 18px;
  font-size: var(--type-features-body);
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.65;
}

.feature-doc.premium {
  border: 0;
  background: transparent;
}

.feature-doc.highlight {
  border: 0;
  background: transparent;
}

.feature-doc.is-hidden {
  display: none;
}

.feature-group.is-empty {
  display: none;
}

.features-empty {
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  color: var(--text-soft);
  background: transparent;
}

@keyframes features-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 1000px) {
  .features-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-sidebar {
    position: relative;
    top: 0;
    height: auto;
  }

  .features-toc {
    max-height: 260px;
  }

  .features-hero {
    text-align: center;
    margin-inline: auto;
  }

  .features-hero .subtitle {
    margin-inline: auto;
  }
}
