:root {
  --st-white: #ffffff;
  --st-ink: #12121a;
  --st-ink-soft: #242434;
  --st-muted: #656477;
  --st-line: #e7e7ef;
  --st-panel: #f6f7fb;
  --st-purple: #6500e8;
  --st-purple-dark: #36007c;
  --st-green: #9fe870;
  --st-green-soft: #e8ffd9;
  --st-shadow: 0 24px 70px rgba(25, 22, 53, 0.14);
  --st-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body.st-site {
  margin: 0;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--st-ink);
  background: var(--st-white);
  line-height: 1.5;
}

body.st-site * {
  box-sizing: border-box;
}

body.st-site h1,
body.st-site h2,
body.st-site h3,
body.st-site p,
body.st-site ul,
body.st-site dl,
body.st-site dd {
  margin-top: 0;
}

body.st-site h1,
body.st-site h2,
body.st-site h3 {
  letter-spacing: 0;
}

body.st-site a {
  color: inherit;
  text-decoration: none;
}

body.st-site img,
body.st-site iframe {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--st-ink);
  color: var(--st-white);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

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

.container {
  max-width: 1160px;
}

.st-navbar-shell {
  min-height: 88px;
}

.st-navbar {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 14px;
}

.st-navbar > .container {
  min-height: 68px;
  padding: 10px 14px;
  border: 1px solid rgba(231, 231, 239, 0.85);
  border-radius: var(--st-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 44px rgba(24, 24, 38, 0.11);
  backdrop-filter: blur(16px);
}

.st-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 900;
  color: var(--st-purple);
}

.st-brand span {
  color: var(--st-purple);
  font-weight: 900;
}

.st-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px !important;
}

.st-nav-links {
  align-items: center;
  gap: 4px;
  margin-right: 14px;
}

.st-nav-links .nav-link {
  color: var(--st-muted);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  padding: 12px 14px !important;
  border-radius: 6px;
}

.st-nav-links .nav-link:hover,
.st-nav-links .nav-link:focus {
  color: var(--st-purple);
  background: #f3efff;
}

.st-menu-button {
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--st-line);
  border-radius: 8px;
}

.st-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--st-ink);
}

.st-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.st-button:hover,
.st-button:focus {
  transform: translateY(-1px);
}

.st-button .mobi-mbri {
  font-size: 1.2rem;
  line-height: 1;
}

.st-button-primary {
  background: var(--st-purple);
  border-color: var(--st-purple);
  color: var(--st-white) !important;
  box-shadow: 0 14px 28px rgba(101, 0, 232, 0.22);
}

.st-button-primary:hover,
.st-button-primary:focus {
  background: #5200bf;
  border-color: #5200bf;
  color: var(--st-white) !important;
}

.st-button-secondary {
  background: var(--st-white);
  border-color: var(--st-line);
  color: var(--st-ink) !important;
}

.st-button-secondary:hover,
.st-button-secondary:focus {
  border-color: var(--st-purple);
  color: var(--st-purple) !important;
}

.st-button-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.88rem;
}

.st-button-full {
  width: 100%;
}

.st-hero {
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    linear-gradient(180deg, #fbfbff 0%, #ffffff 74%),
    var(--st-white);
}

.st-hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 58px;
}

.st-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--st-ink);
  font-size: 4.08rem;
  line-height: 0.98;
  font-weight: 900;
}

.st-hero-copy p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--st-muted);
  font-size: 1.24rem;
  line-height: 1.55;
  font-weight: 500;
}

.st-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.st-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
}

.st-proof div {
  border-left: 3px solid var(--st-green);
  padding-left: 14px;
}

.st-proof dt {
  margin-bottom: 3px;
  color: var(--st-ink);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 900;
}

.st-proof dd {
  color: var(--st-muted);
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 700;
}

.st-hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.st-phone-shell {
  position: relative;
  z-index: 2;
  width: min(348px, 78vw);
  padding: 13px;
  border: 1px solid #2e2e38;
  border-radius: 38px !important;
  background: #111116;
  box-shadow: var(--st-shadow);
  transform: rotate(1.5deg);
}

.st-phone-speaker {
  width: 76px;
  height: 5px;
  margin: 3px auto 11px;
  border-radius: 8px;
  background: #33333d;
}

.st-phone-screen {
  overflow: hidden;
  aspect-ratio: 1008 / 2244;
  border-radius: 28px !important;
  background: #191919;
}

.st-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 !important;
}

.st-route-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(231, 231, 239, 0.8);
  border-radius: var(--st-radius) !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 56px rgba(25, 22, 53, 0.16);
  backdrop-filter: blur(14px);
}

.st-route-card {
  top: 64px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(330px, 70vw);
  padding: 18px;
}

.st-route-card strong {
  display: block;
  color: var(--st-ink);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 900;
}

.st-route-label {
  display: block;
  margin-bottom: 8px;
  color: var(--st-muted);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.st-section {
  padding: 86px 0;
}

.st-section-heading {
  max-width: 730px;
  margin: 0 auto 38px;
  text-align: center;
}

.st-section-heading-left {
  margin-left: 0;
  text-align: left;
}

.st-section-heading h2,
.st-pricing-copy h2,
.legal-hero h1 {
  margin-bottom: 14px;
  color: var(--st-ink);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.st-section-heading p,
.st-pricing-copy p {
  margin-bottom: 0;
  color: var(--st-muted);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 500;
}

.st-steps {
  background: var(--st-white);
}

.st-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.st-step-card {
  overflow: hidden;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius) !important;
  background: var(--st-white);
  box-shadow: 0 18px 48px rgba(26, 24, 52, 0.08);
}

.st-step-media {
  height: 390px;
  overflow: hidden;
  background: #16161c;
}

.st-step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 !important;
}

.st-step-content {
  padding: 24px;
}

.st-step-number {
  display: block;
  margin-bottom: 12px;
  color: var(--st-purple);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
}

.st-step-content h3 {
  margin-bottom: 10px;
  color: var(--st-ink);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
}

.st-step-content p {
  margin-bottom: 0;
  color: var(--st-muted);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.st-video {
  background: var(--st-panel);
}

.st-video-frame {
  overflow: hidden;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius) !important;
  background: #07070a;
  box-shadow: var(--st-shadow);
}

.st-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.st-video-caption {
  margin: 18px 0 0;
  color: var(--st-muted);
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.st-pricing {
  background: #111118;
  color: var(--st-white);
}

.st-pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.st-pricing-copy h2 {
  color: var(--st-white);
}

.st-pricing-copy p {
  color: #c5c4d2;
}

.st-price-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--st-radius) !important;
  background: #1b1b25;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.st-price-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.st-price-topline span {
  color: var(--st-green);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.st-price-topline h3 {
  margin: 8px 0 0;
  color: var(--st-white);
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 900;
}

.st-price-topline p {
  margin-bottom: 0;
  text-align: right;
}

.st-price-topline p strong {
  display: block;
  color: var(--st-white);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

.st-price-topline p span {
  color: #c5c4d2;
  text-transform: none;
}

.st-check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.st-check-list li {
  position: relative;
  padding-left: 26px;
  color: #ececf5;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.st-check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--st-green);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.st-footer {
  padding: 30px 0;
  background: var(--st-purple-dark);
  color: var(--st-white);
}

.st-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.st-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.st-footer a {
  color: var(--st-white);
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 800;
}

.st-footer a:hover,
.st-footer a:focus {
  color: var(--st-green);
}

.st-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.legal-page {
  background: #fbfbfe;
}

.legal-hero {
  padding: 84px 0 72px;
  background: #111118;
  color: var(--st-white);
}

.legal-hero .container {
  max-width: 920px;
}

.legal-date {
  margin-bottom: 18px;
  color: var(--st-green);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-hero h1 {
  color: var(--st-white);
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: #d7d6e2;
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 500;
}

.legal-content {
  padding: 58px 0 88px;
  background: #fbfbfe;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 5px;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  background: var(--st-white);
  padding: 12px;
  box-shadow: 0 18px 48px rgba(26, 24, 52, 0.06);
}

.legal-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--st-muted);
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus {
  background: #f3efff;
  color: var(--st-purple);
}

.legal-article {
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  background: var(--st-white);
  padding: 44px;
  box-shadow: 0 18px 48px rgba(26, 24, 52, 0.06);
}

.legal-article section + section {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--st-line);
}

.legal-article h2 {
  margin-bottom: 14px;
  color: var(--st-ink);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
}

.legal-article h3 {
  margin: 24px 0 10px;
  color: var(--st-ink-soft);
  font-size: 1.24rem;
  line-height: 1.2;
  font-weight: 900;
}

.legal-article p,
.legal-article li {
  color: #3d3d4f;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 500;
}

.legal-article p {
  margin-bottom: 16px;
}

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

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25rem;
}

.legal-article a {
  color: var(--st-purple);
  font-weight: 800;
}

.legal-article a:hover,
.legal-article a:focus {
  text-decoration: underline;
}

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

.contact-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: center;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  background: var(--st-panel);
  padding: 24px;
  color: var(--st-ink) !important;
}

.contact-card .mobi-mbri {
  color: var(--st-purple);
  font-size: 2rem;
  line-height: 1;
}

.contact-card strong {
  color: var(--st-ink);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 900;
}

.contact-card span:last-child {
  color: var(--st-muted);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 991px) {
  .st-navbar {
    top: 8px;
    padding: 0 8px;
  }

  .st-navbar > .container {
    padding: 10px 12px;
  }

  .st-navbar .navbar-collapse {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--st-line);
  }

  .st-nav-links {
    align-items: stretch;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .st-nav-links .nav-link {
    justify-content: flex-start;
  }

  .st-hero {
    padding-top: 50px;
  }

  .st-hero-grid,
  .st-pricing-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .st-hero-copy h1 {
    font-size: 3.25rem;
  }

  .st-hero-visual {
    min-height: 590px;
  }

  .st-step-grid {
    grid-template-columns: 1fr;
  }

  .st-step-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .st-step-media {
    height: 330px;
  }

  .legal-toc {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .st-navbar-shell {
    min-height: 82px;
  }

  .st-brand span {
    font-size: 0.9rem;
  }

  .st-hero {
    padding: 38px 0 54px;
  }

  .st-hero-grid {
    gap: 38px;
  }

  .st-hero-copy h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .st-hero-copy p {
    font-size: 1.06rem;
  }

  .st-actions,
  .st-button {
    width: 100%;
  }

  .st-proof {
    grid-template-columns: 1fr;
  }

  .st-hero-visual {
    min-height: 540px;
  }

  .st-phone-shell {
    width: min(310px, 82vw);
  }

  .st-route-card {
    top: 10px;
    right: 0;
    width: min(300px, 88vw);
  }

  .st-section {
    padding: 62px 0;
  }

  .st-section-heading h2,
  .st-pricing-copy h2,
  .legal-hero h1 {
    font-size: 2.2rem;
  }

  .st-step-card {
    display: block;
  }

  .st-step-media {
    height: 360px;
  }

  .st-price-card {
    padding: 22px;
  }

  .st-price-topline {
    display: block;
  }

  .st-price-topline p {
    margin-top: 18px;
    text-align: left;
  }

  .st-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding: 58px 0 52px;
  }

  .legal-content {
    padding: 34px 0 60px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-article {
    padding: 24px;
  }

  .legal-article h2 {
    font-size: 1.65rem;
  }

  .legal-article p,
  .legal-article li {
    font-size: 1rem;
  }

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

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

  .st-button {
    transition: none;
  }

  .st-button:hover,
  .st-button:focus {
    transform: none;
  }
}
