/* Цвета и градиенты в духе legal.max.ru (токены MAX) */
:root {
  --bg-ground: #0d0d0d;
  --sign-primary: #ffffff;
  --sign-secondary: #c3c3c3;
  --sign-tertiary: #b5b5b5;
  --divider: #ffffff1f;
  --surface: #181818;
  --surface-elevated: #383838;
  --radius-l: 16px;
  --radius-m: 12px;
  --grad-btn: radial-gradient(
    136.12% 140.74% at 99.77% 99.04%,
    #8d28c8 0%,
    #7c42fa 20%,
    #007aff 80%,
    #609ceb 100%
  );
  --grad-text: linear-gradient(
    105deg,
    #5a8cff 0%,
    #43d6ff 45%,
    #8f3fff 100%
  );
  --grad-hover: linear-gradient(
    135deg,
    #01c5c8 0%,
    #046ef4 50%,
    #572dff 100%
  );
  --blur-1: #aa4cff;
  --blur-2: #3838ff;
  --blur-3: #3a89fb;
  --blur-4: #630eff;
  --font: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg-ground);
  color: var(--sign-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

.page {
  overflow-x: visible;
}

/* Фоновые пятна как на max.ru */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-blobs::before,
.bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.bg-blobs::before {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle at 30% 30%, var(--blur-1), transparent 60%);
}
.bg-blobs::after {
  width: min(70vw, 600px);
  height: min(70vw, 600px);
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle at 70% 40%, var(--blur-3), var(--blur-2) 50%, transparent 70%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Header — липкая шапка с кнопкой */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -24px 32px;
  padding: 14px 24px 16px;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.96) 0%,
    rgba(13, 13, 13, 0.88) 70%,
    rgba(13, 13, 13, 0.75) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.brand {
  display: flex;
  align-items: center;
}
.brand-text {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Кнопки: единая сетка размеров; основная — градиент MAX, вторичная — обводка */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-l);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease,
    background 0.25s ease, border-color 0.2s ease;
}

.btn-icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.95;
}

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 122, 255, 0.25);
}
.btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 32px rgba(124, 66, 250, 0.35);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--divider);
  color: var(--sign-primary);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--link {
  color: #007aff;
  padding: 10px 14px;
  font-weight: 500;
  background: transparent;
  border: none;
}
.btn--link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn svg {
  flex-shrink: 0;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
    padding-bottom: 96px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 122, 255, 0.12);
  border: 1px solid rgba(0, 122, 255, 0.25);
  color: #5a8cff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--sign-secondary);
  max-width: 34em;
  margin: 0 0 28px;
}

.hero-lead--secondary {
  margin-top: -12px;
  margin-bottom: 28px;
  font-size: 1.0625rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--sign-tertiary);
  max-width: 32em;
}

.hero-note-link {
  color: #007aff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-note-link:hover {
  color: #5a8cff;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-card {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(56, 56, 56, 0.6), rgba(24, 24, 24, 0.9));
  border: 1px solid var(--divider);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.chat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-ground);
  margin-left: -12px;
  background: var(--grad-btn);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.avatar-stack span:first-child {
  margin-left: 0;
}

.chat-title {
  font-weight: 600;
  font-size: 1rem;
}
.chat-sub {
  font-size: 0.8125rem;
  color: var(--sign-tertiary);
}

.msg {
  padding: 12px 14px;
  border-radius: var(--radius-m);
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 92%;
}
.msg--them {
  background: var(--surface);
  color: var(--sign-secondary);
}
.msg--me {
  margin-left: auto;
  background: rgba(0, 122, 255, 0.15);
  border: 1px solid rgba(0, 122, 255, 0.25);
  color: var(--sign-primary);
}

/* Sections */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-lead {
  color: var(--sign-secondary);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 42em;
  margin: 0 0 40px;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 80px;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 24px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--divider);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: rgba(0, 122, 255, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(0, 122, 255, 0.12);
  color: #5a8cff;
  font-size: 1.25rem;
}

.feature h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--sign-secondary);
}

.audience {
  margin-bottom: 80px;
  padding: 40px 28px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(99, 14, 255, 0.12) 0%,
    rgba(0, 122, 255, 0.08) 100%
  );
  border: 1px solid var(--divider);
}

.audience-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.audience-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}
.audience-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--sign-secondary);
  line-height: 1.5;
}

.audience-lead {
  margin-bottom: 28px;
}

.audience-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--grad-btn);
}

/* FAQ (SEO) */
.faq-block {
  margin-bottom: 80px;
}

.faq-intro {
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-l);
  border: 1px solid var(--divider);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--divider);
}

.faq-item:last-child {
  border-bottom: none;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-item {
    interpolate-size: allow-keywords;
  }

  .faq-item::details-content {
    block-size: 0;
    overflow-y: clip;
    transition:
      content-visibility 0.4s allow-discrete,
      block-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item[open]::details-content {
    block-size: auto;
  }
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 22px 22px;
  line-height: 1.35;
  color: var(--sign-primary);
  transition: color 0.15s ease, background 0.15s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  border-right: 2px solid var(--sign-secondary);
  border-bottom: 2px solid var(--sign-secondary);
  transform: rotate(45deg);
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s ease;
}

.faq-item[open] .faq-q::after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.faq-item[open] .faq-q {
  padding-bottom: 12px;
}

.faq-q:hover {
  color: var(--sign-primary);
  background: rgba(255, 255, 255, 0.03);
}

.faq-q:focus {
  outline: none;
}

.faq-q:focus-visible {
  outline: 2px solid rgba(124, 66, 250, 0.55);
  outline-offset: -2px;
}

.faq-a {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--sign-secondary);
}

@media (min-width: 720px) {
  .faq-q {
    padding: 24px 28px;
  }

  .faq-item[open] .faq-q {
    padding-bottom: 14px;
  }

  .faq-a {
    padding: 0 28px 26px;
  }
}

/* QR block */
.qr-block {
  margin-bottom: 80px;
  position: relative;
}

.qr-block-inner {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 40px 28px 44px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(124, 66, 250, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(0, 122, 255, 0.12), transparent 50%),
    linear-gradient(165deg, rgba(30, 30, 32, 0.98) 0%, rgba(18, 18, 20, 1) 100%);
  box-shadow:
    0 0 0 1px rgba(124, 66, 250, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.qr-block-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(124, 66, 250, 0.45) 0%,
    rgba(0, 122, 255, 0.25) 45%,
    rgba(96, 156, 235, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 800px) {
  .qr-block-inner {
    grid-template-columns: 1fr minmax(280px, auto);
    gap: 48px;
    padding: 48px 48px 52px 52px;
  }
}

.qr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8c4ff;
  background: rgba(0, 122, 255, 0.12);
  border: 1px solid rgba(0, 122, 255, 0.22);
}

.qr-kicker-icon {
  display: flex;
  color: #5a8cff;
}

.qr-block-title {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.qr-block-text .section-title {
  margin-bottom: 0;
}

.qr-block-lead {
  margin-bottom: 22px;
  max-width: 38em;
}

.qr-steps {
  margin: 0 0 24px;
  padding-left: 1.35em;
  color: var(--sign-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 34em;
}

.qr-steps li {
  padding-left: 0.35em;
}

.qr-steps li::marker {
  color: #5a8cff;
  font-weight: 600;
}

.qr-block-link {
  align-self: flex-start;
}

/* Вторичная CTA в блоке QR: тёмный гласс, сине-фиолетовая обводка и свечение MAX */
.btn--qr-secondary {
  background: linear-gradient(
    165deg,
    rgba(32, 38, 56, 0.92) 0%,
    rgba(16, 18, 26, 0.98) 100%
  );
  border: 1px solid rgba(0, 122, 255, 0.38);
  color: #e8eefc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(124, 66, 250, 0.12),
    0 4px 22px rgba(0, 122, 255, 0.14);
}

.btn--qr-secondary:hover {
  color: #fff;
  filter: none;
  transform: translateY(-2px);
  border-color: rgba(124, 66, 250, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(124, 66, 250, 0.25),
    0 10px 36px rgba(124, 66, 250, 0.2),
    0 4px 20px rgba(0, 122, 255, 0.18);
}

.btn--qr-secondary:active {
  transform: translateY(0);
}

.btn-icon--qr {
  color: #7eb0ff;
  transition: color 0.2s ease;
}

.btn--qr-secondary:hover .btn-icon--qr {
  color: #c4d9ff;
}

@media (prefers-reduced-motion: reduce) {
  .btn--qr-secondary:hover {
    transform: none;
  }
}

.qr-visual-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.qr-glow {
  position: absolute;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 66, 250, 0.35) 0%,
    rgba(0, 122, 255, 0.12) 45%,
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.qr-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 3px;
  border-radius: 22px;
  background: var(--grad-btn);
  box-shadow:
    0 4px 24px rgba(0, 122, 255, 0.2),
    0 20px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.qr-frame:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(124, 66, 250, 0.35),
    0 28px 56px rgba(0, 0, 0, 0.4);
}

.qr-frame-shine {
  position: absolute;
  inset: 3px;
  border-radius: 19px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 42%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.5;
  z-index: 2;
}

.qr-frame-body {
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
  border-radius: 19px;
  background: #fff;
  text-align: center;
}

.qr-image {
  display: block;
  width: 240px;
  height: 240px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.qr-caption {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qr-caption-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #007aff;
}

.qr-caption-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #272727;
}

@media (prefers-reduced-motion: reduce) {
  .qr-frame:hover {
    transform: none;
  }
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 48px 24px;
  border-radius: 24px;
  border: 1px solid var(--divider);
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(124, 66, 250, 0.2),
    transparent 55%
  );
}
.cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.cta-block p {
  margin: 0 auto 24px;
  max-width: 36em;
  color: var(--sign-secondary);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--sign-tertiary);
}

.brand--link {
  color: inherit;
  text-decoration: none;
}
.brand--link:hover .brand-text {
  color: #5a8cff;
}

/* Страница правил / юридический текст */
.legal-main {
  padding-bottom: 24px;
}

.legal-article {
  width: 100%;
  max-width: none;
  margin: 0;
}

.legal-article-header {
  margin-bottom: 8px;
}

.legal-title {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.legal-title-quote {
  white-space: nowrap;
}

.legal-title-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--sign-secondary);
  letter-spacing: -0.02em;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 28px 0 32px;
}

.legal-h2 {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 14px;
  line-height: 1.3;
  color: var(--sign-primary);
}

.legal-article > .legal-h2:first-of-type {
  margin-top: 0;
}

.legal-h2-num {
  color: #5a8cff;
  margin-right: 4px;
}

.legal-p {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--sign-secondary);
}

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

.legal-list {
  margin: 0 0 20px;
  padding-left: 1.35em;
  color: var(--sign-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list strong {
  color: var(--sign-primary);
  font-weight: 600;
}

.legal-table-wrap {
  margin: 0 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-m);
  border: 1px solid var(--divider);
  background: rgba(255, 255, 255, 0.03);
}

.legal-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--divider);
}

.legal-table thead th {
  font-weight: 600;
  color: var(--sign-primary);
  background: rgba(0, 122, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-table td:first-child {
  font-weight: 600;
  color: #5a8cff;
  white-space: nowrap;
}

.legal-outro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--sign-secondary);
}

.footer-link {
  color: #007aff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #5a8cff;
}

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