@font-face {
  font-family: "TikTok Sans";
  src: url("/TikTok_Sans/static/TikTokSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TikTok Sans";
  src: url("/TikTok_Sans/static/TikTokSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --violet: #7249ff;
  --violet-dark: #5630d8;
  --ink: #18191a;
  --muted: #76747f;
  --line: #e8e6ee;
  --page-background: #171b3a;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page-background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(18, 20, 58, 0.18), rgba(18, 20, 58, 0.56)),
    url("hero-raw-01.jpg") center top / cover fixed;
  font-family: "TikTok Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.landing {
  width: min(100%, 420px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}

.landing__cover {
  height: 190px;
  background:
    linear-gradient(180deg, rgba(39, 44, 105, 0.05), rgba(39, 44, 105, 0.16)),
    url("hero-raw-01.jpg") center / cover;
}

.landing__card {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 166px);
  margin-top: -24px;
  padding: 30px 20px 24px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -12px 30px rgba(20, 25, 65, 0.12);
}

.landing__header {
  text-align: center;
}

.landing__logo {
  display: block;
  width: min(100%, 214px);
  height: auto;
  margin: 0 auto 22px;
}

.landing__eyebrow {
  margin: 0 0 11px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: clamp(27px, 7.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.landing__lead {
  max-width: 310px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.landing__actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
.contact:focus-visible,
.legal a:focus-visible {
  outline: 3px solid rgba(114, 73, 255, 0.32);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 8px 18px rgba(114, 73, 255, 0.2);
}

.button--primary:hover {
  background: var(--violet-dark);
}

.button--secondary {
  color: var(--violet);
  border-color: rgba(114, 73, 255, 0.32);
  background: #f7f5ff;
}

.button--secondary:hover {
  background: #efebff;
}

.button__arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.landing__contacts {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.contact {
  display: grid;
  gap: 4px;
  padding: 16px 2px 15px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact__label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.contact__value {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact:hover .contact__value {
  color: var(--violet);
}

.landing__footer {
  padding-top: 22px;
  text-align: center;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 12px;
}

.legal a {
  color: #858294;
  font-size: 11px;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: #c9c5d6;
  text-underline-offset: 2px;
}

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

.landing__copyright {
  margin: 15px 0 0;
  color: #aaa7b3;
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 420px) {
  .landing__card {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
