@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body,
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}
h2 {
  scroll-margin-top: 7rem;
}

.flex-1 {
  flex: 1;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.row_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 700px) {
  .if_wide {
    display: none !important;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.base {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.3rem;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #00000010;
}

.hero {
  margin-top: -3rem;
  padding: 4rem 1rem;
  padding-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

.secondary {
  background-color: #1a396f15;
}

.hero .bgtext {
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: -1;
  text-wrap: nowrap;
  white-space: nowrap;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero .txt {
  padding: 0 2rem;
  color: #1a396f;
  opacity: 0.04;
}

.hero .bgtext_placeholder {
  height: 11.5rem;
}

.screenshot {
  width: min(90%, 700px);
  aspect-ratio: 16 / 10;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem 0.5rem #00000010;
  background-color: #fff;
  margin-top: -4rem;
  background-image: url("/assets/screenshot.png");
  background-size: cover;
  background-position: top;
}

.btn_main {
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #000;
  border: 2px solid #000000;
  border-radius: 0.3rem;
  transition: all 0.3s;
}

.platform_logo {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  transition: transform 0.2s;
}

.platform_logo:hover {
  transform: scale(1.1);
}

.platform_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec {
  padding: 3rem 1rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a396f;
  text-align: center;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

/*.features {
  display: flex;
  overflow-x: scroll;
  justify-content: start;
  gap: 1rem;
  width: 100vw;
  min-height: 100px;
}*/

.feature {
  border-radius: 0.5rem;
  width: 18rem;
  height: 10rem;
  background-color: green;
  padding: 1.2rem;
  min-height: 10rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: start;
  background-color: #1a396f09;
  transition: background-color 0.3s;
}

.feature:hover {
  background-color: #1a396f15;
}

.feature > img {
  width: 1.4rem;
}

.feature > .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.base_limited {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.beta_label {
  background-color: #1a396f;
  padding: 0.6rem 1rem;
  border-radius: 3rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}


.made_in{
  border-radius: 3rem;
  font-weight: bold;
  font-size: .6rem;
  background-color: #828a99;
  color: white;
  padding: .3rem .6rem;
}