@property --scroll-in {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@property --scroll-past {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --color-primary: #ff3145;
  --color-primary-glow: #f5b6ab;
  --color-bg: #0f0f0f;
  --color-surface-80: rgba(15, 15, 15, 0.8);
  --color-white: #ffffff;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-25: rgba(255, 255, 255, 0.25);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-disabled: #999999;
  --color-black: #000000;
  --color-success: #28cd36;
  --color-input-border: #2b2b2b;

  --font-family-base: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-family-soft: "Quicksand", var(--font-family-base);

  --scrim-rise: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.62) 24%,
    rgba(0, 0, 0, 0.42) 46%,
    rgba(0, 0, 0, 0.22) 66%,
    rgba(0, 0, 0, 0.07) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  --content-max-width: 1440px;
  --content-padding-mobile: 20px;
  --content-padding-desktop: 70px;

  --header-height-mobile: 72px;
  --header-height-desktop: 93px;

  --breakpoint-desktop: 1024px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.215, 0.61, 0.355, 1);
  --duration-reveal: 1.15s;
  --duration-reveal-word: 1.5s;
  --reveal-word-stagger: 85ms;
  --duration-hover: 0.28s;
  --dot-grid-color: rgba(255, 255, 255, 0.09);
  --dot-grid-size: 32px;
  --dot-grid-dot: 1.5px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
}

body {
  margin: 0;
  overflow-anchor: none;
  color: var(--color-white);
  background: var(--color-bg);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.section-container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-mobile);
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 var(--content-padding-desktop);
  }
}

.app-icon-sprite {
  display: none;
}

main {
  transition: opacity 0.22s ease;
}

main.is-page-transitioning {
  opacity: 0;
}

main > section[id] {
  scroll-margin-top: 88px;
}

@media (min-width: 1024px) {
  main > section[id] {
    scroll-margin-top: 108px;
  }
}

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

[hidden] {
  display: none !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  padding: 14.5px 24px;
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, filter var(--duration-hover) ease;
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary-glow);
}

.btn--ghost {
  background: var(--color-surface-80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 16px 0 var(--color-white-25);
}

.btn--block {
  flex: 1 0 0;
  min-width: 0;
}

.btn--wide {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn--primary:hover {
    filter: brightness(1.07);
  }

  .btn--ghost:hover {
    background: rgba(38, 38, 38, 0.85);
  }
}

@media (min-width: 1024px) {
  .btn--lg {
    padding: 20px 16px;
    font-size: 20px;
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0) 100%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 15, 15, 0.72);
  box-shadow: 0 1px 0 0 var(--color-white-10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
  pointer-events: none;
}

.site-header--scrolled::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height-mobile);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand {
  display: block;
  width: auto;
  height: 26px;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-header__actions .btn {
  padding: 9px 14px;
  font-size: 13px;
}

.site-header__actions .btn--ghost {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 429px) {
  .site-header__brand {
    height: 22px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .site-header__actions .btn {
    padding: 8px 11px;
    font-size: 12px;
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    gap: 8px;
  }

  .site-header__brand {
    height: 18px;
  }

  .site-header__actions {
    gap: 4px;
  }

  .site-header__actions .btn {
    padding: 7px 9px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: var(--header-height-desktop);
  }

  .site-header__brand {
    height: 32px;
  }

  .site-header__nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 16px;
  }

  .nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 4px;
    border-radius: 100px;
    background: var(--color-surface-80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 16px 0 var(--color-white-25);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-pill::-webkit-scrollbar {
    display: none;
  }

  .nav-pill__highlight {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    border-radius: 100px;
    background: var(--color-white-10);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }

  .nav-pill__tab {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 13px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.25s ease;
  }

  .nav-pill__tab:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-pill__tab:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .site-header__actions {
    flex-shrink: 0;
    margin-left: 0;
  }

  .site-header__actions .btn {
    padding: 12.5px 40px;
    font-size: 16px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-pill__tab {
    padding: 13px 15px;
  }

  .site-header__actions .btn {
    padding: 12.5px 24px;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: -11px;
  margin-right: -11px;
  padding: 0;
  border-radius: 12px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 0.34s var(--ease-out-soft);
}

.site-header--menu-open .menu-toggle__bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.site-header--menu-open .menu-toggle__bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.site-header--menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}

.site-menu__panel {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: calc(var(--header-height-mobile) + 24px);
  padding-bottom: 48px;
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  translate: 0 18px;
}

.site-header--menu-open .site-menu__inner {
  animation: site-menu-rise 0.26s var(--ease-out-soft) forwards;
}

@keyframes site-menu-rise {
  to {
    translate: none;
  }
}

.site-menu__link,
.site-menu__sublink {
  display: inline-block;
  transform-origin: left center;
  transition: scale 0.3s var(--ease-out-soft), color 0.2s ease;
}

.site-menu__link {
  padding: 9px 0;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-white);
}

.site-menu__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: start;
  column-gap: 20px;
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-white-10);
}

.site-menu__sublink {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}


.site-menu__link:focus-visible,
.site-menu__sublink:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1.07;
  }

  .site-menu__sublink:hover {
    color: var(--color-white);
  }
}

.has-menu-open,
.has-menu-open body {
  overflow: hidden;
}

@media (max-height: 620px) {
  .site-menu__link {
    padding: 5px 0;
    font-size: clamp(22px, 6vw, 28px);
  }

  .site-menu__secondary {
    margin-top: 18px;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-menu,
  .menu-toggle__bar {
    transition-duration: 0.01ms;
  }

  .site-menu__link,
  .site-menu__sublink {
    transition: none;
  }

  .site-menu__inner {
    translate: none;
  }

  .site-header--menu-open .site-menu__inner {
    animation: none;
  }

  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .site-menu {
    display: none;
  }
}

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

.support-action {
  font-size: 14px;
  font-weight: 400;
  padding: 14.5px 24px;
}

.support-action__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.support-action--whatsapp .support-action__icon {
  color: #25d366;
}

.support-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  will-change: transform;
}

.support-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  background: #25d366;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, opacity var(--duration-hover) ease;
}

.support-fab:hover {
  background: #1fb356;
  transform: translateY(-2px);
}

.support-fab--phone {
  background: var(--color-white);
  color: var(--color-bg);
}

.support-fab--phone:hover {
  background: #e6e6e6;
}

.support-fab--phone:focus-visible {
  outline-color: var(--color-primary);
}

.support-fab:active {
  transform: translateY(0) scale(0.97);
}

.support-fab:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.support-fab__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.has-menu-open .support-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 559px) {
  .support-dock {
    gap: 8px;
  }

  .support-fab {
    padding: 14px;
  }

  .support-fab__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

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

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background: var(--color-bg);
  box-shadow: inset 0 0 40px 0 var(--color-white-25);
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.field__label {
  padding-left: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}

.field__input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1.5px solid var(--color-input-border);
  background-color: var(--color-bg);
  background-image: none;
  color: var(--color-white);
  caret-color: var(--color-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  transition: border-color 180ms var(--ease-standard);
}

.field__input::placeholder {
  color: var(--color-disabled);
  font-size: 14px;
}

.field__input:focus,
.field__input:focus-visible {
  outline: none;
  border-color: var(--color-primary);
}

.field__input--textarea {
  height: auto;
  padding: 16px 22px;
  border-radius: 24px;
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

.field__input--select {
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
}

.field--select::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 12px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset;
  box-shadow: 0 0 0 1000px var(--color-bg) inset;
  -webkit-text-fill-color: var(--color-white);
  caret-color: var(--color-primary);
}

.legal-page {
  padding: 140px 0 96px;
}

.legal-page__inner {
  max-width: 780px;
}

.legal-page__head {
  margin-bottom: 24px;
}

.legal-page__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fefefe;
  margin: 0 0 8px;
  text-wrap: balance;
}

.legal-page__outline {
  position: sticky;
  top: 76px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 28px;
  padding: 10px 14px 0;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page__outline-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(254, 254, 254, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.legal-page__outline-bar {
  --legal-progress: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.legal-page__outline-bar::before {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--legal-progress) * 100%);
  border-radius: 2px;
  background: #fefefe;
}

.legal-page__body {
  font-size: 16px;
  line-height: 1.75;
  color: #c9c9c9;
  overflow-wrap: anywhere;
  hyphens: none;
  text-wrap: pretty;
}

.legal-page__body h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fefefe;
  margin: 56px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  scroll-margin-top: 120px;
}

.legal-page__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-page__body h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ededed;
  margin: 28px 0 10px;
}

.legal-page__body p {
  margin: 0 0 16px;
}

.legal-page__body p > strong:first-child {
  color: #fefefe;
  font-variant-numeric: tabular-nums;
}

.legal-page__effective {
  font-size: 13px;
  color: #8f8f8f;
  margin: 0 0 24px;
}

.legal-page__identity {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  line-height: 1.7;
}

.legal-page__rule {
  height: 0;
  margin: 32px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-page__body ul,
.legal-page__body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

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

.legal-page__body strong {
  color: #fefefe;
  font-weight: 600;
}

.legal-page__body a {
  color: #fefefe;
  text-decoration: underline;
}

.legal-page__table {
  position: relative;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin: 0 0 24px;
  border-radius: 10px;
}

.legal-page__table:focus-visible {
  outline: 2px solid #fefefe;
  outline-offset: 3px;
}

.legal-page__table table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-page__table th,
.legal-page__table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page__table th {
  color: #fefefe;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.legal-document {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-document__meta {
  color: rgba(254, 254, 254, 0.55);
  font-size: 13px;
  margin: 0;
}

.legal-document__meta:empty {
  display: none;
}

.legal-document__download {
  align-self: flex-start;
  color: rgba(254, 254, 254, 0.75);
  font-size: 14px;
  text-decoration: underline;
}

.legal-document:not(:has(.legal-document__download:not([hidden]))):not(:has(.legal-document__meta:not(:empty))) {
  display: none;
}

@media (min-width: 1024px) {
  .legal-page__outline {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
  }

  .legal-page__outline-bar {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-page__outline {
    backdrop-filter: none;
  }
}

@media print {
  .legal-page {
    padding: 0;
    color: #000000;
  }

  .legal-page__inner {
    max-width: none;
  }

  .legal-page__outline,
  .legal-document {
    display: none;
  }

  .legal-page__title,
  .legal-page__body,
  .legal-page__body h2,
  .legal-page__body h3,
  .legal-page__body strong,
  .legal-page__table th,
  .legal-page__table td {
    color: #000000;
  }

  .legal-page__body {
    font-size: 11pt;
    line-height: 1.5;
  }

  .legal-page__body h2 {
    margin-top: 24pt;
    border-top-color: #999999;
    break-after: avoid;
  }

  .legal-page__identity,
  .legal-page__table,
  .legal-page__table table,
  .legal-page__table tr {
    break-inside: avoid;
  }

  .legal-page__table {
    overflow-x: visible;
  }

  .legal-page__table table {
    min-width: 0;
  }

  .legal-page__table th,
  .legal-page__table td,
  .legal-page__identity {
    border-color: #999999;
  }

  .legal-page__rule {
    border-top-color: #cccccc;
  }
}

.license-verify__loading,
.license-verify__notfound,
.license-verify__error,
.license-verify__card {
  display: none;
}

.license-verify[data-state="loading"] .license-verify__loading,
.license-verify[data-state="notfound"] .license-verify__notfound,
.license-verify[data-state="error"] .license-verify__error,
.license-verify[data-state="valid"] .license-verify__card,
.license-verify[data-state="expired"] .license-verify__card,
.license-verify[data-state="invalid"] .license-verify__card {
  display: block;
}

.license-verify__loading {
  font-size: 15px;
  color: var(--color-disabled);
}

.license-verify__headline {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 16px;
}

.license-verify__card {
  border: 1px solid var(--color-white-10);
  border-radius: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.license-verify__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
}

.license-verify__status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.license-verify[data-state="valid"] .license-verify__status {
  color: var(--color-success);
}

.license-verify[data-state="valid"] .license-verify__status::before {
  background: var(--color-success);
}

.license-verify[data-state="expired"] .license-verify__status,
.license-verify[data-state="invalid"] .license-verify__status {
  color: var(--color-primary);
}

.license-verify[data-state="expired"] .license-verify__status::before,
.license-verify[data-state="invalid"] .license-verify__status::before {
  background: var(--color-primary);
}

.license-verify__company {
  margin: 0 0 6px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.license-verify__address {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-white-70);
}

.license-verify__rows {
  margin: 0;
  border-top: 1px solid var(--color-white-10);
}

.license-verify__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-white-10);
}

.license-verify__row dt {
  font-size: 14px;
  color: var(--color-disabled);
}

.license-verify__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  text-align: right;
}

.license-verify__note {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-disabled);
}

@media (max-width: 640px) {
  .license-verify__card {
    padding: 22px 18px;
  }
}

.license-lookup {
  margin-top: 32px;
}

.license-lookup__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.license-lookup__field {
  flex: 1 1 260px;
}

.btn.license-lookup__submit {
  height: 56px;
  padding: 0 36px;
}

@media (max-width: 560px) {
  .btn.license-lookup__submit {
    width: 100%;
  }
}

.license-lookup__hint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--color-primary);
}

.site-footer {
  background: var(--color-black);
  overflow: hidden;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer__menus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.site-footer__menu-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.site-footer__menu--primary .site-footer__menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  max-width: 340px;
  text-align: left;
}

.site-footer__menu--social .site-footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  width: auto;
}

.site-footer__menu-title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-disabled);
  transition: color 0.2s ease, transform 0.25s ease;
}

.site-footer__menu a:hover {
  color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__menu a:hover {
    transform: translateX(3px);
  }
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 363px;
  text-align: center;
}

.site-footer__contact-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__contact-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__contact-mail {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.site-footer__contact-mail:hover {
  color: var(--color-white-70);
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn.site-footer__action {
  padding: 14.5px 32px;
  font-size: 14px;
  font-weight: 400;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4px 0 20px;
}

.site-footer__logo img {
  display: block;
  width: 140px;
  height: auto;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-footer__payment {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__payment-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-footer__payment-title {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-70);
}

.site-footer__payment-band {
  display: block;
  width: 456px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 456 / 32;
  opacity: 0.85;
}

.site-footer__info {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__company {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 0;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
  color: var(--color-white-55, rgba(254, 254, 254, 0.55));
}

.site-footer__company-name {
  color: var(--color-white-70);
  font-weight: 600;
}

.site-footer__company a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.site-footer__company-phone {
  white-space: nowrap;
}

.site-footer__company a:hover {
  color: var(--color-white);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.site-footer__legal > * {
  white-space: nowrap;
}

.site-footer__legal a {
  color: var(--color-white-70);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .site-footer__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .site-footer__menus {
    flex-direction: row;
    align-items: flex-start;
    width: auto;
    gap: 48px;
  }

  .site-footer__menu {
    width: auto;
    align-items: flex-start;
  }

  .site-footer__menu-title {
    text-align: left;
    font-size: 16px;
  }

  .site-footer__menu a {
    font-size: 16px;
  }

  .site-footer__menu--primary .site-footer__menu-list {
    max-width: none;
    column-gap: 40px;
  }

  .site-footer__menu--social .site-footer__menu-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }

  .site-footer__contact {
    width: 363px;
    flex-shrink: 0;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__actions {
    justify-content: flex-start;
  }

  .site-footer__contact-title {
    font-size: 24px;
  }

  .site-footer__info-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
  }

  .site-footer__company {
    width: auto;
    flex: 0 1 auto;
    text-align: left;
  }

  .site-footer__legal {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 10px 20px;
  }

  .site-footer__payment-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .site-footer__logo {
    padding: 8px 0 24px;
  }

  .site-footer__logo img {
    width: 200px;
  }
}
