:root {
  --background: #f9fafb;
  --primary-text: #161e2e;
  --secondary-text: #848484;
  --hero-hightlight: #5050EB;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: var(--background);
  margin: 0;
  color: var(--primary-text);
}

::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

header {
  display: flex;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 42px;
  width: 100%;
}

nav {
  width: 100%;
  max-width: 832px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hero {
  width: 100%;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 32px;
  padding-right: 32px;
  vertical-align: top;
  padding-top: 16px;
}

.hero-inner {
  text-align: center;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 58px;
  margin: 0;
}

main {
  max-width: 100%;
}

.apps {
  width: 100%;
  padding-top: 64px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.apps-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.apps-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 500px;
}

.apps-item-desc {
  padding-left: 10px;
}

footer {
  display: flex;
  padding-top: 80px;
  margin-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
}

.footer-inside {
  width: 100%;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.highlight {
  color: var(--hero-hightlight)
}

a {
  text-decoration: none;
  color: var(--primary-text);
}

h3 {
  font-weight: 300;
  color: var(--secondary-text);
  padding-left: 60px;
  padding-right: 60px;
  line-height: 28px;
}

.features-desc {
  color: var(--secondary-text);
  margin-top: 0;
  font-size: 14px;
}

.bold {
  font-weight: 500;
}

.footer-text {
  color: var(--secondary-text);
  font-size: 14px;
}

.footer-right {
  display: flex;
  gap: 24px;
  align-self: center;
}

.logo-text {
  font-size: 20px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  letter-spacing: 0.25;
}

.page p {
  color: var(--secondary-text);
  line-height: 28px;
}

.page table {
  margin-top: 40px;
  width: 100%;
  table-layout: fixed;
  border-spacing: 0 25px;
  color: var(--secondary-text);
}

.page table td {
  vertical-align: baseline;
}

.apps-item-desc a:hover {
  text-decoration: underline;
}

.menu {
  display: flex;
  gap: 18px
}

@media (min-width: 767px) and (max-width: 1400px) {
  .hero-inner {
    margin-left: 0;
  }

  .hero {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  header {
    padding-top: 24px;
  }

  .menu {
    gap: 12px
  }

  nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-inner {
    width: auto;
    margin-left: 0;
  }

  .apps-items {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
    line-height: 38px;
  }

  h3 {
    font-size: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  footer {
    width: auto;
  }

  .footer-inside {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
