@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
        
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.card {
  color:black;
}

div.space1{width:100%;min-height:13px;} /* 8x1.618 */
div.space2{width:100%;min-height:21px;} /* 8x1.618^2 */
div.space3{width:100%;min-height:34px;}
div.space4{width:100%;min-height:55px;}

.loader {
  display:none;
}

.sa-box {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid #ddd;
  border-radius:8px;
  padding:1.2rem;
  margin:0 5px;
  height:100%;
  min-height:250px;
}
.sa-box .desc {
  font-weight:100;
  margin:25px 0 50px;
}
.sa-box iframe {
  max-width:100%;
}

#footer {
  padding: 2em 0;
  position: sticky;
  height: 130px;
  top: calc( 100vh - 130px );
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-outer {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-middle {
  width: 26px;
  height: 26px;
  background: #A8A8A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-inner {
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

/* marketing */
.join-button {
  background: #8FE94A;
  color: #000000;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.join-button:hover {
  transform: scale(1.05);
  background: #a6ff5c;
}

