:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --page: #f6f8fb;
  --card: #ffffff;
  --blue: #1677ff;
  --blue-dark: #123c8c;
  --cyan: #00a9e8;
  --violet: #6d5dfc;
  --green: #12b76a;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 90;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.1);
}

.brand,
.header-tools,
.site-nav,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover {
  background: #eef6ff;
  color: var(--blue-dark);
}

.header-tools {
  gap: 10px;
}

.language-switcher {
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switcher button {
  min-width: 32px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.header-action,
.button,
.email-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.header-action {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  min-height: 88svh;
  align-items: center;
  margin: 0 auto;
  padding: 142px 0 76px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

h1 {
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  line-height: 0.88;
  font-weight: 950;
}

h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 950;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-lede,
.section-heading p:not(.eyebrow),
.app-copy p,
.trust-grid p,
.contact-copy p,
.feature-panel p,
.step p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-lede {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.2rem;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 119, 255, 0.24);
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-facts span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #344054;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-product {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(22, 119, 255, 0.13), rgba(109, 93, 252, 0.13)),
    #fff;
  box-shadow: var(--shadow);
}

.hero-product img {
  align-self: end;
  justify-self: end;
  width: min(720px, 106%);
  margin: -70px -70px 8px 0;
  filter: drop-shadow(0 26px 30px rgba(16, 24, 40, 0.12));
}

.route-panel {
  position: relative;
  z-index: 2;
  width: min(365px, calc(100% - 36px));
  margin: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(18px);
}

.panel-top,
.route-choice,
.trip-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-top span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.panel-top strong,
.route-choice b,
.route-choice small,
.trip-card span,
.trip-card strong {
  display: block;
}

.route-choice,
.trip-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.route-choice.active {
  border-color: rgba(22, 119, 255, 0.28);
  background: #eef6ff;
}

.route-choice {
  flex-direction: column;
  align-items: flex-start;
}

.route-choice small,
.trip-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.trip-card {
  justify-content: space-between;
}

.trip-card b {
  color: var(--green);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 780px;
}

.split-grid,
.feature-grid,
.steps,
.app-section,
.trust-grid,
.contact-section {
  display: grid;
  gap: 18px;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.feature-grid,
.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel,
.step,
.image-panel,
.trust-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.06);
}

.feature-panel,
.step {
  padding: 24px;
}

.feature-panel p,
.step p {
  margin-top: 12px;
}

.panel-icon,
.step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-weight: 950;
}

.image-panel {
  overflow: hidden;
  margin: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.image-panel.wide {
  grid-column: 1 / -1;
}

.image-panel img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  padding: 24px;
}

.app-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metrics div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.45rem;
  font-weight: 950;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone {
  width: min(360px, 100%);
  justify-self: center;
  padding: 12px;
  border-radius: 34px;
  background: #111827;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 650px;
  overflow: hidden;
  border-radius: 25px;
  background: #f8fafc;
}

.phone-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 34px 20px 24px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--cyan));
  color: #fff;
}

.phone-hero img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.phone-card {
  margin: 16px 18px 0;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
}

.phone-card.blue {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.phone-card.purple {
  background: linear-gradient(135deg, var(--violet), #9b5cff);
}

.phone-card b,
.phone-card span {
  display: block;
}

.phone-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.phone-image {
  width: calc(100% - 36px);
  height: 165px;
  margin: 16px 18px 0;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 18px;
}

.phone-stats span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.trust-band {
  background: #101828;
  color: #fff;
}

.trust-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  align-items: start;
}

.trust-grid .eyebrow,
.trust-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-grid h2 {
  color: #fff;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list article {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: center;
}

.email-link {
  min-height: 74px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 18px 40px rgba(22, 119, 255, 0.23);
  text-align: center;
  word-break: break-word;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .app-section,
  .trust-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 520px;
  }

  .hero-product img {
    width: min(680px, 100%);
    margin: -44px -34px 10px auto;
  }

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

@media (max-width: 680px) {
  body {
    background:
      linear-gradient(180deg, #eef6ff 0, #f6f8fb 460px),
      var(--page);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 58px;
    gap: 6px;
    padding: 7px;
    border-radius: 18px;
  }

  .header-action span {
    display: none;
  }

  .brand {
    gap: 7px;
    min-width: 0;
  }

  .brand span {
    display: inline;
    max-width: 86px;
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .header-tools {
    gap: 6px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 25px;
    height: 26px;
    font-size: 0.62rem;
  }

  .header-action {
    width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .header-action::before {
    content: "@";
    font-weight: 950;
  }

  .hero {
    width: min(100% - 20px, 430px);
    gap: 22px;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.7rem;
  }

  .eyebrow::before {
    width: 20px;
  }

  h1 {
    margin-top: 10px;
    font-size: clamp(3rem, 18vw, 4.45rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.78rem, 10vw, 2.35rem);
    line-height: 1.06;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .app-copy p,
  .trust-grid p,
  .contact-copy p,
  .feature-panel p,
  .step p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-lede {
    margin-top: 16px;
  }

  .hero-actions,
  .hero-facts {
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-facts span {
    flex: 1 1 calc(50% - 9px);
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-product {
    min-height: 390px;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
  }

  .hero-product img {
    width: min(470px, 100%);
    margin: -22px -36px 4px auto;
    opacity: 0.92;
  }

  .route-panel {
    width: calc(100% - 24px);
    margin: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .panel-top {
    gap: 10px;
  }

  .panel-top span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .panel-top strong,
  .route-choice b,
  .trip-card strong,
  .trip-card b {
    font-size: 0.9rem;
  }

  .route-choice,
  .trip-card {
    margin-top: 10px;
    padding: 11px;
    border-radius: 12px;
  }

  .route-choice small,
  .trip-card span {
    font-size: 0.74rem;
  }

  .section {
    width: min(100% - 20px, 430px);
    padding: 54px 0;
  }

  .split-grid,
  .feature-grid,
  .steps,
  .metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .feature-panel,
  .step {
    padding: 18px;
    border-radius: 14px;
  }

  .panel-icon,
  .step span {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .image-panel {
    min-height: 230px;
    border-radius: 14px;
  }

  .image-panel img {
    padding: 12px;
  }

  .app-section {
    gap: 30px;
  }

  .metrics div {
    min-height: 86px;
    padding: 16px;
    border-radius: 14px;
  }

  .phone {
    width: min(100%, 340px);
    padding: 9px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 540px;
    border-radius: 21px;
  }

  .phone-hero {
    gap: 12px;
    padding: 24px 16px 18px;
  }

  .phone-hero img {
    width: 52px;
    height: 52px;
  }

  .phone-hero strong {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .phone-card {
    margin: 12px 14px 0;
    padding: 13px;
    border-radius: 13px;
  }

  .phone-image {
    width: calc(100% - 28px);
    height: 126px;
    margin: 12px 14px 0;
    border-radius: 13px;
  }

  .phone-stats {
    gap: 6px;
    padding: 12px 14px 14px;
  }

  .phone-stats span {
    min-height: 52px;
    border-radius: 12px;
    font-size: 0.68rem;
  }

  .trust-band .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .trust-list article {
    padding: 18px;
    border-radius: 14px;
  }

  .contact-section {
    gap: 22px;
  }

  .email-link {
    min-height: 62px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .site-footer {
    width: min(100% - 20px, 430px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 32px;
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  .language-switcher button {
    min-width: 24px;
  }

  h1 {
    font-size: 2.9rem;
  }

  .hero-product {
    min-height: 370px;
  }

  .hero-product img {
    width: min(420px, 100%);
    margin-right: -28px;
  }

  .route-panel {
    width: calc(100% - 18px);
    margin: 9px;
  }
}
