:root {
  --paper: #f8f6f1;
  --ink: #1c2024;
  --muted: #626974;
  --line: #e6e1d8;
  --white: #ffffff;
  --blue: #4773ff;
  --violet: #7e57ff;
  --gold: #d2964b;
  --green: #2a966e;
  --teal: #236f95;
  --shadow: 0 24px 70px rgba(28, 32, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(10, 12, 14, 0.48);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.8vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.26)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 52%);
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-line {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  min-height: 58px;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--white);
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.05;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.store-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.section-pad {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.intro-band {
  padding: clamp(62px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.intro-grid,
.product-layout,
.marketplace {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.3fr;
  gap: clamp(40px, 7vw, 90px);
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

p {
  line-height: 1.55;
}

.gold {
  color: var(--gold);
}

.blue {
  color: var(--blue);
}

.violet {
  color: var(--violet);
}

.green {
  color: var(--green);
}

.problem-list {
  display: grid;
  gap: 24px;
}

.problem-list article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
}

.problem-list span {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.problem-list p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-head {
  width: min(960px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.compact {
  width: min(820px, 100%);
}

.section-head p:not(.section-kicker) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.product-section,
.gtm {
  background: var(--white);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.phone-stack {
  position: relative;
  min-height: 560px;
}

.phone {
  position: absolute;
  width: min(34vw, 245px);
  min-width: 185px;
  border: 10px solid #17191d;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #17191d;
}

.phone-a {
  left: 4%;
  top: 48px;
  transform: rotate(-5deg);
}

.phone-b {
  left: 34%;
  top: 0;
  transform: rotate(2deg);
}

.phone-c {
  left: 62%;
  top: 80px;
  transform: rotate(5deg);
}

.flow-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.flow-list .flow-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

.case-grid,
.timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(28, 32, 36, 0.08);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.case-card div {
  padding: 22px;
}

.case-card p,
.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.timeline article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.marketplace {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.marketplace-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 20px;
}

.marketplace-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 12px;
}

.marketplace-flow span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  text-align: center;
  padding: 18px;
}

.marketplace-flow span:nth-of-type(2) {
  background: var(--violet);
}

.marketplace-flow span:nth-of-type(3) {
  background: var(--green);
}

.marketplace-flow span:nth-of-type(4) {
  background: var(--gold);
}

.marketplace-flow b {
  height: 2px;
  background: var(--line);
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.2));
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 90px);
  padding: 84px 0;
}

.cta ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.cta li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.cta-stores {
  margin: 0 0 22px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 6px;
  opacity: 0.38;
  transition: opacity 0.18s, background 0.18s;
}

.lang-btn:hover {
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.12);
}

.lang-btn.active {
  opacity: 1;
}

@media (max-width: 980px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .intro-grid,
  .product-layout,
  .marketplace {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    gap: 16px;
  }

  .phone-stack {
    min-height: 500px;
  }

}

@media (max-width: 680px) {
  .lang-btn {
    font-size: 18px;
    padding: 2px 4px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  .button {
    width: 100%;
  }

  .store-button {
    width: 100%;
  }

  .case-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 470px;
    overflow: hidden;
  }

  .phone {
    min-width: 165px;
    width: 48vw;
    border-width: 8px;
  }

  .phone-a {
    left: -2%;
    top: 72px;
  }

  .phone-b {
    left: 25%;
  }

  .phone-c {
    left: 52%;
    top: 86px;
  }

  .marketplace-flow {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .marketplace-flow span {
    width: 150px;
  }

  .marketplace-flow b {
    width: 2px;
    height: 28px;
  }

  .cta-copy {
    margin: 0 auto;
  }
}
