/* ==========================================================================
   Orbit Fast — landing page
   Custom rebuild of the original Webflow site, computed styles preserved 1:1.
   ========================================================================== */

/* --- Reset / base (ports the Webflow base rules this page relied on) ------ */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: #333;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

b,
strong {
  font-weight: bold;
}

a {
  background-color: transparent;
}

/* --- Layout --------------------------------------------------------------- */
.hero {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 100svh;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero__columns {
  display: flex;
  flex: 1;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 100%;
}

.hero__intro {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
}

.hero__icon {
  width: auto;
  height: 160px;
}

.hero__copy {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero__title-wrap {
  display: flex;
  flex-flow: column;
  align-self: center;
  align-items: center;
}

.hero__title {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  line-height: 105%;
}

.hero__title-text {
  color: #000;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 105%;
}

/* Note: original .parahraphs sets no font-family, so it inherits the body
   (Arial). Kept identical for a true 1:1 render — swap to Inter if desired. */
.hero__subtitle {
  max-width: 384px;
  margin-top: 0;
  margin-bottom: 0;
  color: #00000080;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
}

.hero__store-link {
  display: inline-block;
  max-width: 100%;
}

.hero__store-badge {
  height: 52px;
}

.hero__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #00000080;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.hero__nav {
  display: flex;
  gap: 20px;
}

.hero__nav-link {
  color: #00000080;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.hero__nav-link:hover {
  color: #000;
}

/* --- Responsive ----------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero__columns {
    flex-flow: column;
    align-items: stretch;
    gap: 56px;
  }

  .hero__content,
  .hero__intro,
  .hero__copy,
  .hero__title-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__icon {
    height: 144px;
  }

  .hero__title-text {
    width: 100%;
    font-size: 28px;
    line-height: 115%;
  }

  .hero__title {
    color: #000;
    text-align: center;
    font-size: 24px;
    line-height: 110%;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__store-badge {
    height: 52px;
  }
}
