/* ==========================================================================
   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;
  }
}

/* --- Content sections (features + FAQ) ------------------------------------ */
.section {
  font-family: Inter, sans-serif;
  padding: 80px 24px;
  border-top: 1px solid #ececec;
}

.section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 680px;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00000080;
}

.section__title {
  margin: 14px 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #000;
}

.features {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}

.feature__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
}

.feature__text {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
}

.faq {
  margin: 36px 0 0;
}

.faq__item {
  padding: 24px 0;
  border-top: 1px solid #ececec;
}

.faq__item:first-child {
  border-top: none;
  padding-top: 8px;
}

.faq__q {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #000;
}

.faq__a {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.62);
}

.faq__a a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-link--center {
  display: inline-block;
  margin-top: 36px;
}

.store-link--center img {
  display: block;
  height: 52px;
  width: auto;
}

/* --- Site footer ---------------------------------------------------------- */
.site-footer {
  font-family: Inter, sans-serif;
  border-top: 1px solid #ececec;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.site-footer__link {
  font-size: 14px;
  font-weight: 500;
  color: #00000080;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__link:hover {
  color: #000;
}

.site-footer__copyright {
  font-size: 12px;
  color: #00000080;
}

@media screen and (max-width: 600px) {
  .section {
    padding: 56px 24px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
