:root {
  color-scheme: light;
  --ink: #17181c;
  --muted: #626977;
  --line: #eceff3;
  --paper: #ffffff;
  --orange: #ff6500;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 101, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.hero {
  min-height: 82vh;
  padding: 28px clamp(20px, 5vw, 72px) 42px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 850;
}

.brand-mark {
  width: auto;
  height: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  max-width: 1160px;
  min-height: calc(82vh - 70px);
  margin: 0 auto;
  padding-top: 42px;
}

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

.eyebrow,
.label {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(68px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 0;
  color: #4e5663;
  font-size: clamp(20px, 2.35vw, 28px);
  line-height: 1.35;
  font-weight: 700;
}

.site-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: #858c98;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.55;
  font-weight: 500;
}

.actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(22, 24, 28, 0.08);
  font-size: 14px;
  font-weight: 850;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 101, 0, 0.12);
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 650px;
}

.app-shot {
  width: clamp(230px, 22vw, 300px);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(18, 21, 28, 0.18);
}

.app-shot-primary {
  z-index: 2;
}

.app-shot-secondary {
  z-index: 1;
  width: clamp(210px, 20vw, 270px);
}

.preview-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  max-width: 980px;
  margin: 30px auto 0;
  padding: 0 clamp(20px, 5vw, 72px) 48px;
}

.preview-copy {
  justify-self: center;
  padding: 22px 0;
}

.preview-copy p:last-child {
  margin: 10px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  font-weight: 900;
}

.preview-media {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0;
}

.store-badge {
  width: auto;
  height: 40px;
  border-radius: 0;
  box-shadow: none;
}

.badge-note {
  margin: -4px 0 0;
  color: #7d8490;
  font-size: 13px;
  font-weight: 800;
}

.footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) 34px;
  color: #8a919c;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.operator-info {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  color: #a0a6af;
  font-size: 12px;
  font-weight: 400;
}

.operator-info div {
  display: grid;
  gap: 3px;
  justify-items: center;
}

.operator-info dt,
.operator-info dd {
  margin: 0;
}

.operator-info dt {
  color: #b3b8bf;
}

.operator-info dd {
  color: #8f96a1;
}

.operator-info div:last-child {
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.82;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
}

.footer a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-mark {
  width: auto;
  height: 1em;
  opacity: 0.72;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 74px;
  }

  .product-visual {
    position: relative;
    display: block;
    min-height: 600px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .app-shot {
    width: clamp(230px, 30vw, 360px);
  }

  .app-shot-secondary {
    width: clamp(210px, 27vw, 320px);
  }

  .app-shot-primary {
    position: absolute;
    top: 0;
    right: 0;
  }

  .app-shot-secondary {
    position: absolute;
    top: 96px;
    left: 0;
  }

  .preview-strip {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .preview-media {
    margin: 0 auto;
  }

  .preview-media {
    justify-items: center;
  }

  .preview-copy {
    justify-self: start;
  }

  .store-badges {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 20px 18px 28px;
  }

  h1 {
    font-size: 68px;
  }

  .lead {
    font-size: 20px;
  }

  .product-visual {
    min-height: 690px;
  }

  .app-shot {
    width: min(68vw, 280px);
    border-radius: 22px;
  }

  .app-shot-primary {
    right: -2px;
  }

  .app-shot-secondary {
    top: 126px;
    left: 0;
    width: min(58vw, 240px);
  }

  .preview-strip {
    margin-top: 24px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .store-badge {
    height: 36px;
  }

  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}
