:root {
  --brand: #6717b8;
  --brand-dark: #3e0d70;
  --brand-light: #a78bfa;
  --brand-green: #22c55e;
  --brand-green-2: #4ade80;
  --ink: #0a0a0a;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f5f3ff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Onest",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3 {
  line-height: 1.15;
}
img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.site-main {
  flex: 1 0 auto;
}

/* Header — transparent, sitting on top of the hero gradient */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 15px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand:hover {
  text-decoration: none;
}
.brand-logo {
  max-width: 200px;
  width: auto;
  display: block;
}
.nav {
  display: none;
  gap: 26px;
  flex: 1 1 auto;
  justify-content: center;
}
.nav a {
  color: var(--ink);
  font-weight: 600;
  position: relative;
  padding: 6px 4px;
  text-decoration: none;
}
.nav a.nav-active {
  color: var(--brand);
}
.nav a:hover {
  color: var(--brand);
}
.header-right {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  gap: 16px;
}
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.lang a {
  color: var(--muted);
  font-weight: 600;
}
.lang a.on {
  color: var(--brand);
}
.cta {
  display: flex;
  gap: 12px;
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.cta:hover {
  background: var(--brand-dark);
  text-decoration: none;
}
.cta svg {
  width: 20px;
  stroke: var(--bg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn-center {
    margin: 0 auto;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 12px;
  width: fit-content;
}
.btn-primary:hover {
  background: var(--brand);
}
.btn-primary svg {
  width: 20px;
  stroke: var(--bg);
}
.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--bg-soft);
}
.btn-light {
  background: #fff;
  color: var(--brand);
}
.btn-light:hover {
  background: #f3f4f6;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
  background: linear-gradient(
    120deg,
    #ede9fe 0%,
    #c4b5fd 42%,
    #a78bfa 78%,
    #ddd6fe 100%
  );
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 86%); */
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0) 70%
  );
  width: 60%;
  height: 120%;
  left: -5%;
  top: -10%;
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(20%, 8%) scale(1.25);
    opacity: 0.7;
  }
  100% {
    transform: translate(35%, -6%) scale(1.1);
    opacity: 0.95;
  }
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy {
  max-width: 768px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 14px;
  color: #0a0a0a;
  outline: none;
}
.hero h1:focus,
.hero h1:focus-visible {
  outline: none;
}
.hero-sub {
  font-size: 1.15rem;
  color: #4b3f63;
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero phones */
.hero-art {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
.hero-art .phone {
  width: 90%;
  min-width: 200px;
  max-width: 360px;
  margin: 0 auto;
}
.phone-b {
  display: none;
}
.float {
  animation: floaty 6s ease-in-out infinite;
}
.float.slow {
  animation-duration: 7.5s;
  animation-delay: 0.6s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
}
.hero-art .phone-b.float {
  animation-name: floatyB;
}
@keyframes floatyB {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
.hero-shape {
  transform: rotate(180deg);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.hero-shape svg {
  transform: translateX(-50%) rotateY(180deg);
  height: 280px;
  width: 150%;
  position: relative;
  left: 50%;
}
.hero-shape svg path {
  fill: #fff;
}

/* ===== Entrance animations ===== */
.split {
  white-space: normal;
}

.split .word {
  display: inline;
  white-space: nowrap;
}

.split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}

.split.is-animated .char {
  animation: charUp 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  animation-delay: var(--char-delay);
}

@keyframes charUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* Entrance animations start paused so they do NOT play on the prerendered HTML. JS adds
   `.anims-ready` to <body> once, from OnAfterRenderAsync(firstRender) — after the interactive
   DOM is in place — so each animation plays exactly once instead of twice (prerender + interactive). */
.anim-up {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.8s ease forwards;
  animation-play-state: paused;
}
.anim-right {
  opacity: 0;
  transform: translateX(46px);
  animation: fadeRight 0.9s ease 0.15s forwards;
  animation-play-state: paused;
}
.anims-ready .anim-up,
.anims-ready .anim-right {
  animation-play-state: running;
}
.d1 {
  animation-delay: 0.15s;
}
.d2 {
  animation-delay: 0.3s;
}
.d3 {
  animation-delay: 0.45s;
}
.d4 {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.18s;
}
.reveal.d3 {
  transition-delay: 0.28s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .anim-up,
  .anim-right,
  .split .char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .float {
    animation: none !important;
  }
}

/* ===== Brand heading (What is / Why) ===== */
.whatis,
.whyis {
  padding: 32px 0 8px;
  text-align: center;
}
.brand-heading {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 10px;
  color: var(--ink);
  text-align: left;
  display: inline-block;
}
.brand-heading-logo {
  display: flex;
  align-items: baseline;
}
.bh {
  white-space: nowrap;
}
.bh-a {
  font-weight: 800;
  font-style: normal;
}
.bh-b {
  font-weight: 400;
  font-style: italic;
}
.bh-c {
  color: var(--brand);
  font-weight: 900;
  font-style: italic;
}
.section-lead {
  color: var(--muted);
  font-size: 1.1rem;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

/* Icon cards */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.icard {
  text-align: center;
  padding: 12px;
}
.icon-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 26px rgba(109, 40, 217, 0.35);
}
.icon-circle svg {
  width: 34px;
  height: 34px;
}
.icard h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.icard p {
  color: var(--muted);
  margin: 0;
}

/* Audience band */
.band {
  padding: 64px 0;
  text-align: center;
}
.band h2 {
  font-size: 2rem;
  margin: 0 0 8px;
}
.band_img {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 36px;
  height: auto;
  display: block;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 36px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
}
.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}
.card p {
  color: var(--muted);
  margin: 0;
}

/* Portal demo with fleet inset (real-time section) */
.demo-shot {
  position: relative;
}
.demo-shot .demo-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.15);
}
.demo-shot .demo-inset {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 44%;
  height: auto;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.28);
}

/* Feature blocks */
.feature {
  padding: 48px 20px;
}
.feature.alt {
  background: var(--bg-soft);
  border-radius: 20px;
  width: calc(100% - 40px);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.feature-grid.reverse .feature-text {
  order: 2;
}
.feature-grid.reverse .feature-img {
  order: 1;
}
.feature-text h2 {
  font-size: 1.8rem;
  margin: 0 0 12px;
}
.feature-text > p {
  color: var(--ink);
  font-size: 1.05rem;
}
.feature-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.feature-img img.feature-img_phone {
  max-width: 320px;
  margin: 0 auto;
}
.feature-img.shadow img {
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.15);
  border: 1px solid var(--border);
}
.checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 0px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  background: var(--brand);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  display: none;
}
.checks li svg {
  width: 30px;
  height: 30px;
}
.checks li svg path {
  fill: var(--brand);
}
.checks li span {
  width: calc(100% - 30px);
}

/* FAQ */
.faq {
  padding: 64px 20px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.faq-intro .eyebrow {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px;
}
.faq-intro h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--ink);
}
.faq-accent {
  color: var(--brand);
  display: block;
}
.faq-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}
.faq-other {
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 16px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}
.faq-item.open {
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-q svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Coverage map */
.coverage {
  padding: 56px 20px;
  text-align: center;
}
.coverage h2 {
  font-size: 2rem;
  margin: 0 0 8px;
}
.coverage-map {
  height: 460px;
  width: 100%;
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

/* App store badges */
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.hero-stores {
  justify-content: flex-start;
  margin-top: 18px;
}
.stores a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 180px;
  transition: background 0.15s ease;
}
.stores a:hover {
  background: var(--brand);
  text-decoration: none;
}
.stores svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.stores .store-tx {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.stores .store-tx small {
  font-size: 0.68rem;
  opacity: 0.8;
}
.stores .store-tx b {
  font-size: 1.05rem;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 76px 0;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: 2.1rem;
  margin: 0 0 6px;
}
.cta-band p {
  margin: 0 0 22px;
  opacity: 0.95;
  font-size: 1.1rem;
}

/* Generic / legal (clear the absolute header) */
.page {
  padding: 130px 20px 56px;
}
.legal {
  max-width: 860px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 2rem;
  margin: 0 0 20px;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 30px 0 8px;
  color: var(--ink);
}
.legal p {
  color: #374151;
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal ul {
  color: #374151;
  line-height: 1.7;
  margin: 0 0 12px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 4px;
}
.legal a {
  color: var(--brand);
}
.legal .legal-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 26px;
}

/* Application form (centered, matching the customer portal) */
.app-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.app-wrap h1 {
  font-size: 1.9rem;
  margin: 0 0 8px;
}
.app-lead {
  color: var(--muted);
  margin: 0 0 28px;
}
.app-form2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.app-form2 label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
}
.app-form2 .full {
  grid-column: 1 / -1;
}
.app-form2 input,
.app-form2 select,
.app-form2 textarea {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}
.app-form2 select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 11px 40px 11px 12px;
  width: 100%;
}
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.app-form2 input:focus,
.app-form2 select:focus,
.app-form2 textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}
.app-form2 textarea {
  resize: none;
}
.app-form2 button {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.app-form2 button:hover {
  background: var(--brand-dark);
}
.app-form2 button:disabled {
  opacity: 0.6;
  cursor: default;
}
.form-error {
  color: #b91c1c;
  font-size: 0.9rem;
}
.form-thanks {
  text-align: center;
  padding: 24px 0;
}
.form-thanks h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.form-thanks svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .app-form2 {
    grid-template-columns: 1fr;
  }
}
.legal p {
  color: var(--muted);
}

/* Contact page (redirect notice) */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 56px 20px;
  align-items: start;
}

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: var(--bg);
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto;
  display: block;
}
.footer-copy {
  color: var(--bg);
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 113px 0 90px;
    /* clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); */
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  /* .hero-art {
    min-height: 420px;
    max-width: 460px;
  } */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-grid.reverse .feature-text {
    order: 1;
  }
  .feature-grid.reverse .feature-img {
    order: 2;
  }
  .feature-img {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 820px) {
  .icon-cards {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .contact-page {
    grid-template-columns: 1fr;
  }
  .orn-1,
  .orn-2 {
    display: none;
  }
}

/* =========================================
   MENU BUTTON
========================================= */

.menu-button {
  position: relative;
  z-index: 1002;

  width: 48px;
  height: 48px;

  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  outline: none;
  background: transparent;

  color: #111;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.menu-button__icon {
  display: block;

  width: 100%;
  height: 100%;
}

/* =========================================
   SVG LINES
========================================= */

.menu-button__line {
  fill: none;

  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;

  transform-box: view-box;
  transform-origin: center;

  transition:
    transform 350ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 200ms ease;
}

/* =========================================
   HAMBURGER → X
========================================= */

.menu-button.is-open .menu-button__line--top {
  transform: translateY(4px) translateX(-2.5px) rotate(45deg);
}

.menu-button.is-open .menu-button__line--middle {
  opacity: 0;
}

.menu-button.is-open .menu-button__line--bottom {
  transform: translateY(-3px) translateX(-3px) rotate(-45deg);
}

/* =========================================
   FULLSCREEN MENU
========================================= */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 999;

  width: 100%;
  height: 100dvh;

  background: #fff;

  visibility: hidden;
  opacity: 0;

  clip-path: inset(0 0 100% 0);

  transition:
    clip-path 650ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 250ms ease,
    visibility 0s linear 650ms;
}

/* =========================================
   OPEN MENU
========================================= */

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;

  clip-path: inset(0 0 0 0);

  transition:
    clip-path 650ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 250ms ease;
}

/* =========================================
   MENU CONTENT
========================================= */

.mobile-menu__content {
  width: 100%;
  height: 100%;

  padding: 100px 18px 40px;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================================
   MENU LINKS
========================================= */

.mobile-menu__links {
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;

  gap: 18px;

  list-style: none;
}

.mobile-menu__links a {
  display: block;

  color: var(--ink);

  font-size: clamp(36px, 7vw, 68px);
  font-weight: 600;
  line-height: 0.95;

  text-decoration: none;

  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 450ms ease,
    transform 600ms cubic-bezier(0.76, 0, 0.24, 1),
    color 200ms ease;
}

/* =========================================
   SIGN IN
========================================= */

.mobile-menu__sign-in {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 450ms ease,
    transform 600ms cubic-bezier(0.76, 0, 0.24, 1),
    background-color 200ms ease,
    color 200ms ease;
}

/* =========================================
   LANGUAGE SWITCH
========================================= */

.mobile-menu__language {
  display: flex;
  align-items: center;

  padding: 4px;

  border: 1px solid #ddd;
  border-radius: 999px;

  background: #f5f5f5;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 450ms ease,
    transform 600ms cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu__language--header {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 400ms;
  background: transparent;
  border: 0;
}
.mobile-menu__language--header .mobile-menu__language-link {
  color: var(--ink);
}

.mobile-menu.is-open .mobile-menu__language {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 400ms;
}

.mobile-menu__language-link {
  min-width: 44px;

  padding: 8px 12px;

  border-radius: 999px;

  color: #777;

  font-size: 13px;
  font-weight: 600;

  text-align: center;
  text-decoration: none;

  transition:
    background-color 200ms ease,
    color 200ms ease;
}
.mobile-menu__language-link:hover {
  text-decoration: none;
}

.mobile-menu__language-link.is-active {
  background: #111;
  color: #fff;
}

/* =========================================
   LINK ANIMATION
========================================= */

.mobile-menu.is-open .mobile-menu__links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open li:nth-child(1) a {
  transition-delay: 100ms;
}

.mobile-menu.is-open li:nth-child(2) a {
  transition-delay: 150ms;
}

.mobile-menu.is-open li:nth-child(3) a {
  transition-delay: 200ms;
}

.mobile-menu.is-open li:nth-child(4) a {
  transition-delay: 250ms;
}

.mobile-menu.is-open .mobile-menu__sign-in {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 350ms;
}

/* =========================================
   LINK HOVER
========================================= */

.mobile-menu__links a:hover {
  color: var(--brand);
}

/* =========================================
   PREVENT BODY SCROLL
========================================= */

body:has(.mobile-menu.is-open) {
  overflow: hidden;
}

/* =========================================
   SUPPORT
========================================= */

.support {
    background:var(--bg-soft);
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 48px;
}
.support_title {
    margin: 0;
    font-size: 2.1rem;
}
.support_text {
    margin: 0;
}
.support_nav {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 12px;
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 480px) {
  .mobile-menu__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {
  .hero-art {
    width: 100%;
    justify-content: space-between;
    max-width: 620px;
  }
  .hero-art .phone {
    max-width: 250px;
  }
  .hero-art .phone-b {
    display: block;
  }
}

@media (min-width: 960px) {
  .mobile-menu,
  .menu-button {
    display: none;
  }
  .nav,
  .header-right {
    display: flex;
  }
}
