:root {
  --ink: #182235;
  --text: #596679;
  --muted: #8792a3;
  --blue: #5a7fe8;
  --blue-2: #a9c0ff;
  --blue-soft: #f4f7ff;
  --green: #53b59a;
  --yellow: #edd27a;
  --coral: #e99591;
  --surface: #ffffff;
  --soft: #f7f9fd;
  --line: #e7ecf4;
  --dark: #172239;
  --mesh: linear-gradient(135deg, rgba(90, 127, 232, .1), rgba(83, 181, 154, .06) 48%, rgba(233, 149, 145, .08));
  --shadow: 0 32px 86px rgba(31, 43, 66, .08);
  --shadow-hover: 0 36px 96px rgba(31, 43, 66, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 34%, #ffffff 76%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.intro-active {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}

body:not(.site-revealed) .site-shell {
  display: none;
}

body.site-revealed {
  overflow: auto;
}

body.site-revealed .onboarding-gate {
  display: none;
}

.onboarding-gate {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, rgba(244, 247, 255, .92) 100%);
}

.gate-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, rgba(90, 127, 232, .1) 46.2%, rgba(83, 181, 154, .08) 100%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.onboarding-gate::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 255, .82));
  pointer-events: none;
}

.gate-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 28px clamp(22px, 5vw, 88px) 0;
}

.gate-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.gate-brand img {
  width: 136px;
  height: auto;
  display: block;
}

.gate-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gate-skip {
  min-height: 44px;
  padding: 0 14px;
  color: #41516a;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(213, 222, 236, .9);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(31, 43, 66, .08);
  backdrop-filter: blur(18px) saturate(1.12);
}

.gate-skip:hover {
  color: #fff;
  background: #172239;
  border-color: #172239;
}

.gate-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 94px);
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 28px clamp(22px, 5vw, 88px) 46px;
}

.gate-copy {
  position: relative;
  z-index: 6;
  max-width: 620px;
}

.gate-copy .label {
  color: #4666ba;
  background: rgba(90, 127, 232, .1);
  border: 1px solid rgba(90, 127, 232, .16);
  border-radius: 999px;
  padding: 9px 12px;
}

.gate-copy h1 {
  margin: 18px 0 20px;
  color: #111b2d;
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: .96;
  font-weight: 800;
  text-shadow: none;
}

.gate-copy p {
  max-width: 590px;
  margin: 0;
  color: #536174;
  font-size: 19px;
  line-height: 1.75;
}

.gate-feature-meta {
  display: grid;
  gap: 6px;
  max-width: 650px;
  margin-top: 20px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(244, 247, 255, .98), rgba(255, 255, 255, .94)),
    #fff;
  border: 1px solid rgba(221, 228, 241, .96);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(31, 43, 66, .08);
  backdrop-filter: blur(22px) saturate(1.15);
}

.gate-feature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4666ba;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gate-feature-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: #fff;
  background: linear-gradient(135deg, #5a7fe8, #53b59a);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0;
}

.gate-feature-meta em {
  font-style: normal;
}

.gate-feature-meta strong {
  color: #1a2638;
  font-size: 20px;
  line-height: 1.45;
}

.gate-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gate-store-row .store-link {
  min-width: 188px;
  border-radius: 8px;
}

.gate-store-apple {
  color: #fff;
  background: linear-gradient(135deg, #172239, #263b67 60%, #5a7fe8);
}

.gate-store-play {
  color: #152238;
  background: #fff;
  border: 1px solid rgba(213, 222, 236, .95);
}

.gate-store-apple:hover {
  color: #fff;
  background: linear-gradient(135deg, #203456, #53b59a);
}

.gate-store-play:hover {
  color: #152238;
  border-color: rgba(90, 127, 232, .32);
  box-shadow: 0 24px 56px rgba(31, 43, 66, .12);
}

.gate-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gate-mini-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #45566f;
  background: #fff;
  border: 1px solid rgba(221, 228, 241, .96);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(31, 43, 66, .055);
}

.gate-mini-grid i {
  color: #5a7fe8;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gate-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.gate-primary {
  color: #fff;
  background: linear-gradient(135deg, #5a7fe8, #53b59a);
  box-shadow: 0 24px 54px rgba(90, 127, 232, .3);
}

.gate-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 68px rgba(90, 127, 232, .34);
}

.gate-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(742px, calc(100vh - 144px));
  perspective: 1400px;
}

.gate-device {
  position: relative;
  width: min(470px, 72vw);
  min-height: min(728px, calc(100vh - 156px));
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 28px 24px 24px;
  color: #101827;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  box-shadow:
    0 34px 92px rgba(31, 43, 66, .16),
    0 12px 34px rgba(90, 127, 232, .12);
  backdrop-filter: blur(26px) saturate(1.12);
  transform: rotateX(0deg) rotateY(-4deg);
  animation: gatePhoneFloat 7.5s ease-in-out infinite;
}

.gate-device::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(18, 28, 46, .08);
  border-radius: 22px;
  pointer-events: none;
}

.gate-device::after {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 132px;
  border-radius: 20px 20px 44px 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.gate-device-status,
.gate-device-head,
.gate-swipe-row {
  position: relative;
  z-index: 2;
}

.gate-device-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #060a12;
  font-size: 14px;
  font-weight: 900;
}

.gate-device-status span:last-child {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.gate-device-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  margin-bottom: 24px;
}

.gate-device-head button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #060a12;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 26px;
}

.gate-device-head button:hover {
  background: rgba(15, 23, 42, .08);
}

.gate-device-head strong {
  text-align: center;
  color: #2f333d;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.gate-track {
  position: relative;
  z-index: 1;
  height: min(504px, calc(100vh - 300px));
  min-height: 466px;
  margin: 0 -58px;
  touch-action: pan-y;
}

.gate-card {
  position: absolute;
  inset: 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate3d(0, 34px, -160px) scale(.82) rotateY(0);
  transition: opacity .72s ease, transform .82s cubic-bezier(.16, 1, .3, 1), filter .72s ease;
  filter: saturate(.86) blur(1px);
  pointer-events: none;
}

.gate-card-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 24px;
  color: #fff;
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    0 28px 72px rgba(16, 24, 40, .2);
}

.gate-card-inner.theme-blue {
  background: linear-gradient(145deg, #458cff, #3f7de3);
}

.gate-card-inner.theme-amber {
  background: linear-gradient(145deg, #d96802, #b84f04);
}

.gate-card-inner.theme-violet {
  background: linear-gradient(145deg, #7882c0, #636dae);
}

.gate-card-inner.theme-green {
  background: linear-gradient(145deg, #47c988, #3fb778);
}

.gate-card-inner.theme-coral {
  background: linear-gradient(145deg, #fb6d67, #df5853);
}

.gate-illustration {
  display: grid;
  place-items: center;
  min-height: 214px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .9);
  border-radius: 8px;
  overflow: hidden;
}

.gate-illustration img {
  width: 100%;
  max-width: 310px;
  height: 220px;
  object-fit: contain;
  display: block;
}

.gate-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.05;
  font-weight: 800;
}

.gate-card p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.42;
}

.gate-card.is-active {
  opacity: 1;
  z-index: 5;
  transform: translate3d(0, 0, 80px) scale(1) rotateY(0);
  filter: saturate(1) blur(0);
  pointer-events: auto;
}

.gate-card.is-prev {
  opacity: .9;
  z-index: 3;
  transform: translate3d(-66%, 18px, -130px) scale(.86) rotateY(18deg) rotateZ(-1deg);
}

.gate-card.is-next {
  opacity: .9;
  z-index: 3;
  transform: translate3d(66%, 18px, -130px) scale(.86) rotateY(-18deg) rotateZ(1deg);
}

.gate-card.is-far {
  opacity: .18;
  z-index: 1;
  transform: translate3d(0, 44px, -260px) scale(.68);
}

.gate-swipe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 0 2px;
}

.gate-swipe-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #5e6571;
  font-size: 22px;
  font-weight: 900;
}

.gate-swipe-label i {
  color: #aab1bd;
  font-size: 19px;
  animation: swipePulse 1.8s ease-in-out infinite;
}

.gate-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 560px;
  transform: translateX(-50%);
  pointer-events: none;
}

.gate-controls > button {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  color: #5d6674;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(214, 222, 235, .92);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(31, 43, 66, .1);
  pointer-events: auto;
}

.gate-controls > button:hover {
  color: #fff;
  background: #182235;
  transform: translateY(-2px);
}

.gate-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gate-dots button {
  width: 22px;
  height: 5px;
  padding: 0;
  background: #dfe8ef;
  border: 0;
  border-radius: 999px;
}

.gate-dots button.active {
  width: 62px;
  background: #0d4be2;
}

body.gate-exiting .onboarding-gate {
  animation: gateExit .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

body.js-loading:not(.page-ready) .hero-copy,
body.js-loading:not(.page-ready) .phone-scene {
  opacity: 0;
}

body.js-loading:not(.page-ready) .hero-copy {
  transform: translateX(-42px);
}

body.js-loading:not(.page-ready) .phone-scene {
  transform: translateX(42px);
}

img {
  max-width: 100%;
}

a,
button {
  transition: background-color .24s ease, color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease, opacity .24s ease;
}

.container {
  max-width: 1180px;
}

.navbar {
  z-index: 20;
  padding: 22px 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-container {
  display: flex;
  align-items: center;
  flex-wrap: inherit;
  justify-content: space-between;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 88px);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(231, 236, 244, .78);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 16px 48px rgba(40, 54, 82, .08);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 118px;
  height: 42px;
  flex: 0 0 118px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 118px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  transition: opacity .24s ease, transform .24s ease;
}

.brand-logo-light {
  opacity: 1;
  filter: drop-shadow(0 12px 28px rgba(4, 9, 18, .28));
}

.brand-logo-dark {
  opacity: 0;
  transform: translateY(2px) scale(.96);
}

.navbar.scrolled .navbar-brand {
  color: var(--ink);
}

.navbar.scrolled .brand-logo-light {
  opacity: 0;
  transform: translateY(-2px) scale(.96);
}

.navbar.scrolled .brand-logo-dark {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-link {
  padding: 8px 13px !important;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active,
.navbar .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #263451, #5a7fe8);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(90, 127, 232, .18);
  text-decoration: none;
  font-weight: 700;
}

.nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #24314d, #53b59a);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 124px 0 74px;
  background:
    linear-gradient(90deg, rgba(8, 13, 26, .86) 0%, rgba(19, 34, 64, .76) 42%, rgba(25, 54, 72, .45) 70%, rgba(10, 16, 28, .36) 100%),
    linear-gradient(180deg, rgba(8, 13, 26, .28), rgba(8, 13, 26, .72)),
    url("../images/stock-hero-city-night.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background:
    linear-gradient(110deg, rgba(90, 127, 232, .18), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(83, 181, 154, .2), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(233, 149, 145, .12), transparent 26%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 88px);
}

.hero-row {
  min-height: calc(100vh - 198px);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .label {
  color: #bcd1ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.06;
  font-weight: 700;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 20px 56px rgba(0, 0, 0, .28);
}

.hero-copy,
.phone-scene {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

body.page-ready .hero-copy {
  opacity: 1;
  transform: translateX(0);
}

body.page-ready .phone-scene {
  opacity: 1;
  transform: translateX(0);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.9vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 700;
}

.hero-copy p,
.section-copy,
.section-head p,
.workflow-layout p,
.trust-copy p,
.about-panel p,
.contact-panel p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy p {
  max-width: 720px;
  font-size: 19px;
  color: rgba(255, 255, 255, .78);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  padding: 13px 17px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(31, 43, 66, .12);
}

.store-link i {
  font-size: 30px;
}

.store-link span {
  display: grid;
  font-size: 18px;
  line-height: 1.06;
  font-weight: 700;
}

.store-link small {
  font-size: 11px;
  font-weight: 700;
  opacity: .68;
}

.store-dark {
  color: #fff;
  background: linear-gradient(135deg, #172239, #2a3a5b 56%, #5a7fe8);
}

.store-light {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(18px);
}

.store-link:hover {
  transform: translateY(-3px);
}

.store-dark:hover {
  color: #fff;
  background: linear-gradient(135deg, #263451, #53b59a);
}

.store-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 22px 56px rgba(15, 23, 42, .18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.hero-points i {
  color: #bcd1ff;
}

.phone-scene {
  position: relative;
  min-height: 560px;
  padding-right: clamp(0px, 3vw, 38px);
}

.phone-main {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  margin-left: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.22);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-head div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-head img {
  width: 34px;
  height: 34px;
}

.phone-head i {
  color: var(--blue);
}

.angel-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 247, 255, .92), rgba(255, 255, 255, .72)),
    linear-gradient(45deg, rgba(83, 181, 154, .08), rgba(233, 149, 145, .07));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.angel-card div {
  padding: 18px 18px 0;
}

.angel-card small {
  color: var(--muted);
  font-weight: 700;
}

.angel-card h2 {
  max-width: 250px;
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.08;
}

.angel-card img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  margin-top: 8px;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.session-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.session-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.session-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.map-preview {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf5ef;
}

.lagos-map {
  position: relative;
  height: 132px;
  background:
    linear-gradient(145deg, rgba(92, 126, 232, .14), transparent 42%),
    linear-gradient(35deg, rgba(83, 181, 154, .18), transparent 55%),
    #eef8f3;
}

.map-road,
.map-water,
.map-pin,
.map-label {
  position: absolute;
}

.map-road {
  height: 7px;
  border-radius: 999px;
  background: rgba(27, 39, 61, .14);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .65);
}

.road-one {
  top: 28px;
  left: -16px;
  width: 210px;
  transform: rotate(12deg);
}

.road-two {
  top: 80px;
  right: -26px;
  width: 235px;
  transform: rotate(-17deg);
}

.road-three {
  bottom: 24px;
  left: 34px;
  width: 170px;
  transform: rotate(-7deg);
}

.map-water {
  right: -24px;
  bottom: -38px;
  width: 190px;
  height: 92px;
  border-radius: 999px 0 0 0;
  background: linear-gradient(135deg, rgba(84, 139, 232, .34), rgba(83, 181, 154, .22));
}

.map-pin {
  left: 50%;
  top: 43%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1744d8, #53b59a);
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(23, 68, 216, .22);
  transform: translate(-50%, -50%);
}

.map-label {
  padding: 3px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.label-lekki {
  right: 18px;
  bottom: 24px;
}

.label-vi {
  left: 22px;
  top: 22px;
}

.label-ikoyi {
  right: 38px;
  top: 36px;
}

.label-lagos {
  left: 28px;
  bottom: 28px;
}

.safe-button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  color: #fff;
  background: linear-gradient(135deg, #53b59a, #5a7fe8);
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(83, 181, 154, .18);
}

.status-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(232, 237, 245, .88);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(37, 51, 76, .1);
  backdrop-filter: blur(22px) saturate(1.18);
  font-weight: 700;
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.status-card i {
  color: var(--blue);
}

.status-one {
  left: 6px;
  top: 98px;
}

.status-two {
  right: 2px;
  bottom: 96px;
  animation-delay: .8s;
}

.trust-strip {
  padding: 76px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: end;
  min-height: 330px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 20, 37, .86), rgba(29, 49, 84, .72) 48%, rgba(34, 92, 93, .42)),
    url("../images/stock-commute-phone.jpg") center / cover no-repeat;
  border: 1px solid rgba(231, 236, 244, .86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-panel .label {
  color: #bcd1ff;
}

.trust-panel h2 {
  max-width: 570px;
  margin: 0;
  color: #fff;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.trust-strip strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.animate-ready {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity .86s ease, transform .86s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--delay, 0ms);
}

.animate-ready[data-animate="slide-left"] {
  transform: translateX(84px);
}

.animate-ready[data-animate="slide-right"] {
  transform: translateX(-84px);
}

.animate-ready[data-animate="zoom"] {
  transform: scale(.94);
}

.animate-ready.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate-ready,
  body.js-loading:not(.page-ready) .hero-copy,
  body.js-loading:not(.page-ready) .phone-scene {
    opacity: 1;
    transform: none;
  }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-card,
.product-grid article,
.workflow-steps article,
.trust-grid div,
.plan-card,
.faq-item,
.audience-grid article,
.emergency-steps article {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(231, 236, 244, .9);
  border-radius: 8px;
  backdrop-filter: blur(20px) saturate(1.16);
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(31, 43, 66, .06);
}

.service-card:hover,
.product-grid article:hover,
.audience-grid article:hover,
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card .service-photo {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: 190px;
  margin: -22px -22px 18px;
  object-fit: cover;
  filter: saturate(.96) contrast(.98);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
  background: linear-gradient(180deg, rgba(12, 20, 37, .04), rgba(12, 20, 37, .52));
  pointer-events: none;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(31, 43, 66, .18);
}

.service-card p,
.product-grid p,
.workflow-steps p,
.plan-card p,
.faq-item p {
  color: var(--text);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.explain-section {
  background: #fff;
}

.explain-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.explain-copy p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

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

.explain-cards article,
.contact-detail-grid article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .68)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.explain-cards i,
.contact-detail-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #86a6ef);
  border-radius: 8px;
}

.explain-cards strong,
.contact-detail-grid strong {
  font-size: 17px;
  font-weight: 700;
}

.explain-cards span,
.contact-detail-grid span {
  color: var(--text);
  line-height: 1.6;
}

.product-section,
.contacts-section,
.audience-section,
.pricing-section,
.faq-section {
  background:
    linear-gradient(135deg, rgba(90, 127, 232, .04), rgba(83, 181, 154, .035) 48%, rgba(233, 149, 145, .035)),
    var(--soft);
}

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

.photo-story {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
  margin-bottom: 26px;
}

.photo-story article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 43, 66, .11);
}

.photo-story article:first-child {
  min-height: 420px;
}

.photo-story img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.photo-story article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(10, 16, 29, .74)),
    linear-gradient(135deg, rgba(90, 127, 232, .22), rgba(83, 181, 154, .1));
}

.photo-story article:hover img {
  transform: scale(1.05);
}

.photo-story div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.photo-story span {
  display: block;
  margin-bottom: 8px;
  color: #cbd9ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.photo-story strong {
  display: block;
  max-width: 420px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.audience-grid article {
  min-height: 220px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(37, 51, 76, .055);
}

.audience-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(244, 247, 255, .95), rgba(232, 249, 244, .9));
  border-radius: 8px;
}

.audience-grid p {
  color: var(--text);
  line-height: 1.66;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.mini-list i {
  color: var(--green);
}

.product-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin-top: 28px;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(31, 43, 66, .1);
}

.product-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(.94) contrast(.98);
}

.product-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(10, 16, 29, .78));
}

.product-photo-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

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

.product-grid article {
  min-height: 178px;
  padding: 22px;
  box-shadow: 0 20px 58px rgba(40, 54, 82, .055);
}

.product-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.scenario-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.scenario-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(90, 127, 232, .18);
}

.scenario-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity .28s ease, transform .28s ease;
}

.scenario-panel.is-changing {
  opacity: .28;
  transform: translateX(46px);
}

.scenario-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scenario-panel h3 {
  max-width: 640px;
  font-size: clamp(27px, 3.5vw, 42px);
}

.scenario-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.scenario-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-panel li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.scenario-panel li i {
  margin-top: 4px;
  color: var(--green);
}

.scenario-panel img {
  display: block;
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  padding: 0;
  background: linear-gradient(135deg, rgba(244, 247, 255, .9), rgba(235, 249, 245, .8));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 43, 66, .09);
}

.viel-section {
  background:
    linear-gradient(135deg, rgba(237, 210, 122, .12), rgba(90, 127, 232, .05) 44%, transparent),
    #fff;
}

.viel-panel {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 36px;
  align-items: center;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.viel-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.viel-panel img {
  display: block;
  width: min(250px, 100%);
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, rgba(244, 247, 255, .9), rgba(235, 249, 245, .84));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.viel-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.viel-actions span {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.viel-actions i {
  margin-top: 4px;
  color: var(--green);
}

.workflow-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(90, 127, 232, .2), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(83, 181, 154, .16), transparent 34%),
    linear-gradient(135deg, #172239, #1d2b46 54%, #152133);
}

.emergency-section {
  background: #fff;
}

.emergency-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(244, 247, 255, .78), rgba(255, 255, 255, .92)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.emergency-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
}

.emergency-steps {
  display: grid;
  gap: 14px;
}

.emergency-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .76);
}

.emergency-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  font-weight: 700;
}

.emergency-steps strong {
  font-size: 17px;
  font-weight: 700;
}

.emergency-steps p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.workflow-section .label {
  color: #b9d8ff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.workflow-layout p {
  color: rgba(255, 255, 255, .72);
}

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

.workflow-steps article {
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.workflow-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 700;
}

.workflow-steps p {
  color: rgba(255, 255, 255, .68);
}

.trust-section {
  background: #fff;
}

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

.trust-grid div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.trust-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(244, 247, 255, .95), rgba(232, 249, 244, .9));
  border-radius: 8px;
}

.trust-grid strong {
  font-size: 17px;
  font-weight: 700;
}

.trust-grid span {
  color: var(--text);
  line-height: 1.6;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: -18px auto 34px;
  padding: 5px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.billing-toggle button {
  min-width: 112px;
  min-height: 40px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
}

.billing-toggle button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.plan-card {
  position: relative;
  height: 100%;
  padding: 30px;
  box-shadow: 0 20px 56px rgba(31, 43, 66, .07);
}

.plan-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 30px 78px rgba(90, 127, 232, .13);
}

.plan-card em {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.plan-tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  margin-top: 20px;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.period {
  display: block;
  margin: 6px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  min-height: 194px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.45;
}

.plan-card li i {
  margin-top: 3px;
  color: var(--green);
}

.plan-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #263451, #5a7fe8);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.plan-card.featured a,
.plan-card a:hover {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.about-section {
  background: #fff;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 44px;
  align-items: center;
}

.about-panel img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(244, 247, 255, .8), rgba(255, 255, 255, .86)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
}

.faq-item button i {
  color: var(--blue);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button i {
  transform: rotate(45deg);
}

.contact-section {
  padding: 28px 0 104px;
  background:
    linear-gradient(180deg, var(--soft), #fff 72%);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 181, 154, .22), transparent 28%),
    linear-gradient(90deg, rgba(20, 31, 53, .92), rgba(50, 80, 150, .72) 56%, rgba(83, 181, 154, .52)),
    url("../images/stock-hero-city-night.jpg") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 18px;
}

.contact-panel .label,
.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-copy h2 {
  color: #fff;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.contact-actions i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10, 16, 29, .14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label,
.newsletter-form {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  font: inherit;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(90, 127, 232, .12);
}

.contact-form button,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

.contact-form button:disabled,
.newsletter-form button:disabled {
  cursor: wait;
  opacity: .78;
}

.form-note,
.newsletter-note {
  min-height: 0;
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.form-note,
.newsletter-note {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.45;
}

.form-note i,
.newsletter-note i {
  margin-top: 2px;
  font-size: 16px;
}

.form-note.is-loading,
.form-note.is-success,
.form-note.is-error,
.newsletter-note.is-loading,
.newsletter-note.is-success,
.newsletter-note.is-error {
  display: flex;
}

.form-note.is-loading,
.newsletter-note.is-loading {
  color: #4666ba;
  background: rgba(90, 127, 232, .1);
  border: 1px solid rgba(90, 127, 232, .18);
}

.form-note.is-success,
.newsletter-note.is-success {
  color: #236d5a;
  background: linear-gradient(135deg, rgba(83, 181, 154, .16), rgba(90, 127, 232, .08));
  border: 1px solid rgba(83, 181, 154, .24);
  box-shadow: 0 16px 38px rgba(83, 181, 154, .12);
}

.form-note.is-error,
.newsletter-note.is-error {
  color: #9b3d3a;
  background: rgba(233, 149, 145, .16);
  border: 1px solid rgba(233, 149, 145, .28);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 30px;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(180deg, rgba(16, 25, 43, .94), rgba(12, 18, 31, .98)),
    url("../images/stock-commute-phone.jpg") center / cover no-repeat;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(4px);
  }
}

@keyframes gatePhoneFloat {
  0%, 100% {
    transform: translateY(0) rotateY(-4deg);
  }
  50% {
    transform: translateY(-12px) rotateY(-2deg);
  }
}

@keyframes swipePulse {
  0%, 100% {
    transform: translateX(0);
    opacity: .72;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@keyframes gateExit {
  to {
    opacity: 0;
    transform: translateY(-28px) scale(.985);
    filter: blur(8px);
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 34px;
  align-items: end;
  margin-bottom: 46px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.footer-newsletter .label {
  color: #bcd1ff;
}

.footer-newsletter h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
}

.newsletter-form {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.newsletter-form input {
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .18);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.newsletter-form button {
  padding: 0 18px;
}

.newsletter-note {
  grid-column: 1 / -1;
}

.newsletter-note:not(.is-loading):not(.is-success):not(.is-error) {
  color: rgba(255, 255, 255, .68);
}

.footer-brand {
  width: fit-content;
  color: #fff;
}

.footer-logo {
  display: block;
  width: 142px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .2));
}

.footer-about p {
  max-width: 390px;
  margin: 18px 0;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .17);
  transform: translateY(-2px);
}

.footer-store {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-store a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.privacy-badge {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 390px;
  margin-top: 22px;
  padding: 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .14);
}

.privacy-badge img {
  width: 132px;
  height: 48px;
  object-fit: contain;
  padding: 7px;
  background: #fff;
  border-radius: 8px;
}

.privacy-badge strong,
.privacy-badge span {
  display: block;
}

.privacy-badge strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.privacy-badge span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
}

.footer-column a:hover,
.footer-store a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 14px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 21, 38, .78), rgba(20, 36, 55, .84)),
    rgba(7, 11, 20, .62);
  backdrop-filter: blur(18px) saturate(1.16);
}

.legal-modal-panel {
  position: relative;
  width: min(1320px, calc(100vw - 28px));
  max-height: min(94vh, 1040px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(5, 10, 20, .38);
  transform: translateY(18px) scale(.98);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.legal-modal.is-open .legal-modal-panel {
  transform: translateY(0) scale(1);
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(24px, 4vw, 54px) 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(26, 38, 64, .96), rgba(90, 127, 232, .84)),
    url("../images/stock-commute-phone.jpg") center / cover no-repeat;
}

.legal-modal-header .label {
  margin-bottom: 10px;
  color: #dce7ff;
}

.legal-modal-header h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.legal-modal-header p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.legal-modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, .24);
  transform: translateY(-2px);
}

.legal-modal-body {
  overflow: auto;
  padding: clamp(22px, 3vw, 42px);
  background:
    linear-gradient(180deg, #fbfcff, #fff 42%),
    var(--surface);
  scrollbar-color: rgba(90, 127, 232, .58) rgba(231, 236, 244, .8);
}

.legal-modal-body.is-loading,
.legal-modal-body.is-error {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-document-intro {
  position: sticky;
  top: calc(-1 * clamp(22px, 3vw, 42px));
  z-index: 2;
  padding: 26px clamp(22px, 3vw, 36px) 24px;
  background:
    linear-gradient(135deg, rgba(244, 247, 255, .98), rgba(255, 255, 255, .98)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 43, 66, .08);
}

.legal-document-intro span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-document-intro h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
}

.legal-document-intro p {
  max-width: 920px;
  margin: 0;
  color: var(--text);
}

.legal-section {
  padding: clamp(22px, 2.4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 43, 66, .05);
}

.legal-section h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 25px);
}

.legal-section h5 {
  margin: 18px 0 8px;
  color: #32415c;
  font-size: 16px;
  font-weight: 800;
}

.legal-modal-body p,
.legal-modal-body li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.82;
}

.legal-modal-body p {
  margin: 0 0 14px;
}

.legal-modal-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-modal-body li::marker {
  color: var(--blue);
}

.legal-table-text {
  overflow-x: auto;
  margin: 14px 0;
  padding: 18px;
  color: #46556b;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.66;
  white-space: pre-wrap;
}

.legal-last-updated {
  justify-self: start;
  padding: 10px 14px;
  color: #4666ba !important;
  background: rgba(90, 127, 232, .1);
  border: 1px solid rgba(90, 127, 232, .16);
  border-radius: 8px;
  font-weight: 800;
}

.legal-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(24px, 4vw, 54px);
  color: var(--muted);
  background: #fbfcff;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.legal-modal-footer a {
  color: var(--blue);
  text-decoration: none;
}

body.legal-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  body.intro-active {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .gate-topbar {
    padding: 22px 22px 0;
  }

  .gate-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 22px 42px;
  }

  .gate-copy {
    max-width: 760px;
  }

  .gate-copy h1 {
    font-size: clamp(42px, 8vw, 70px);
  }

  .gate-carousel {
    min-height: auto;
  }

  .gate-device {
    width: min(460px, calc(100vw - 44px));
    min-height: 660px;
    transform: none;
  }

  .gate-track {
    height: 468px;
    min-height: 468px;
  }

  .gate-controls {
    display: none;
  }

  .nav-container {
    padding: 0 22px;
  }

  .navbar-collapse {
    padding-top: 16px;
    background: rgba(11, 18, 32, .9);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    margin-top: 14px;
    padding: 14px;
    backdrop-filter: blur(20px);
  }

  .navbar.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, .94);
    border-color: var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    background-position: 58% center;
  }

  .hero-container {
    padding: 0 22px;
  }

  .hero-row {
    min-height: auto;
  }

  .phone-scene {
    min-height: auto;
    padding-right: 0;
    padding-bottom: 70px;
  }

  .phone-main {
    margin: 0 auto;
  }

  .status-one {
    left: 20px;
    top: auto;
    bottom: 12px;
  }

  .status-two {
    right: 20px;
    bottom: 12px;
  }

  .scenario-panel,
  .explain-layout,
  .workflow-layout,
  .about-panel,
  .viel-panel,
  .contact-panel,
  .form-grid,
  .trust-panel,
  .footer-newsletter,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 360px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .privacy-badge {
    max-width: 100%;
  }

  .product-grid,
  .workflow-steps,
  .explain-cards,
  .contact-detail-grid,
  .audience-grid,
  .photo-story,
  .emergency-panel,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-story article,
  .photo-story article:first-child {
    min-height: 310px;
  }

  .emergency-steps article {
    grid-template-columns: 1fr;
  }

  .emergency-steps span {
    grid-row: auto;
  }

  .plan-card ul {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .gate-topbar {
    align-items: center;
    padding-top: 18px;
  }

  .gate-brand img {
    width: 118px;
  }

  .gate-top-actions {
    gap: 8px;
  }

  .gate-skip {
    display: none;
  }

  .gate-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 22px 18px max(78px, calc(54px + env(safe-area-inset-bottom)));
  }

  .gate-copy {
    display: contents;
  }

  .gate-copy .label {
    order: 1;
    width: fit-content;
  }

  .gate-copy h1 {
    order: 2;
  }

  .gate-copy p {
    order: 3;
  }

  .gate-carousel {
    order: 4;
  }

  .gate-store-row {
    order: 5;
    margin-top: 0;
  }

  .gate-feature-meta {
    order: 6;
    margin-top: 0;
  }

  .gate-actions {
    order: 7;
  }

  .gate-copy h1 {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .gate-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .gate-feature-meta {
    padding: 15px;
  }

  .gate-feature-meta strong {
    font-size: 17px;
  }

  .gate-mini-grid {
    display: none;
  }

  .gate-actions {
    margin-top: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .gate-primary {
    min-height: 52px;
    padding: 0 18px;
  }

  .gate-device {
    width: calc(100vw - 28px);
    min-height: 600px;
    padding: 22px 16px 18px;
    border-radius: 24px;
  }

  .gate-device-status {
    margin-bottom: 22px;
  }

  .gate-device-head {
    grid-template-columns: 38px 1fr 38px;
    margin-bottom: 18px;
  }

  .gate-device-head strong {
    font-size: 21px;
  }

  .gate-device-head button {
    width: 38px;
    height: 38px;
  }

  .gate-track {
    height: 392px;
    min-height: 392px;
    margin: 0 -22px;
  }

  .gate-card {
    inset: 0 22px;
  }

  .gate-card-inner {
    padding: 13px 13px 16px;
  }

  .gate-illustration {
    min-height: 170px;
    margin-bottom: 14px;
  }

  .gate-illustration img {
    height: 178px;
  }

  .gate-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .gate-card p {
    font-size: 14px;
    line-height: 1.38;
  }

  .gate-swipe-row {
    margin-top: 22px;
  }

  .gate-dots {
    gap: 6px;
  }

  .gate-dots button {
    width: 20px;
  }

  .gate-dots button.active {
    width: 54px;
  }

  .gate-swipe-label {
    gap: 10px;
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .legal-modal {
    padding: 6px;
  }

  .legal-modal-panel {
    width: calc(100vw - 12px);
    max-height: 96vh;
  }

  .legal-modal-header {
    padding: 24px 18px 18px;
  }

  .legal-modal-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .legal-modal-body {
    padding: 18px 14px 24px;
  }

  .legal-document-intro {
    top: -18px;
    padding: 18px;
  }

  .legal-section {
    padding: 18px;
  }

  .legal-modal-body p,
  .legal-modal-body li {
    font-size: 15px;
  }

  .legal-modal-footer {
    flex-direction: column;
    padding: 14px 18px;
  }

  .hero {
    padding: 110px 0 68px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy p,
  .section-copy,
  .section-head p,
  .workflow-layout p,
  .trust-copy p,
  .about-panel p,
  .contact-panel p {
    font-size: 16px;
  }

  .store-link {
    width: 100%;
    justify-content: center;
  }

  .privacy-badge {
    grid-template-columns: 1fr;
  }

  .privacy-badge img {
    width: 150px;
  }

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

  .status-card {
    position: static;
    margin-top: 10px;
  }

  .phone-scene {
    padding-bottom: 0;
  }

  .trust-stats div {
    padding: 14px;
  }

  .trust-strip {
    padding: 58px 0;
  }

  .trust-panel {
    min-height: 430px;
    padding: 24px;
    align-items: end;
    background-position: 58% center;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .photo-story article,
  .photo-story article:first-child {
    min-height: 290px;
  }

  .photo-story strong {
    font-size: 19px;
  }

  .scenario-panel {
    padding: 22px;
  }

  .viel-panel {
    padding: 24px;
  }

  .scenario-tabs {
    justify-content: stretch;
  }

  .scenario-tabs button {
    width: 100%;
    justify-content: center;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-card em {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-copy,
  .contact-form,
  .footer-newsletter {
    padding: 20px;
  }

  .footer-newsletter {
    margin-bottom: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
