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

body{
  font-family:'Montserrat', sans-serif;
  color:#16384a;
  overflow-x:hidden;
}

/* ===== HEADER (same as on the other pages) ===== */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 60px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

.logo-mark{
  display:block;
  width:62px;
  height:62px;
  object-fit:contain;
}

nav{
  display:flex;
  align-items:center;
  gap:45px;
  padding-left:70px;
}

nav a{
  color:#16384a;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  letter-spacing:2px;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  color:#0e8388;
}

/* ===== COMING SOON ===== */
.coming{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:70px 24px;
  background:#f3f9f6;
  overflow:hidden;
}

/* faint topographic pattern, like the blog page */
.coming::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('../images/connect-bg.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.05;
  z-index:0;
}

.coming-card{
  position:relative;
  z-index:1;
  width:560px;
  max-width:100%;
  background:#fff;
  border:1px solid #dcefe8;
  border-radius:20px;
  box-shadow:0 18px 44px rgba(14,131,136,0.12);
  padding:54px 46px;
  text-align:center;
}

.coming-badge{
  width:96px;
  height:96px;
  margin:0 auto 26px;
  border-radius:50%;
  background:#0e8388;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(14,131,136,0.30);
}

.coming-badge svg{
  width:52px;
  height:52px;
}

.coming-card h1{
  font-size:38px;
  font-weight:800;
  color:#16384a;
  letter-spacing:1px;
  margin-bottom:18px;
}

.coming-msg{
  font-size:20px;
  line-height:1.6;
  color:#3a4a44;
}

.coming-msg .platform{
  font-weight:700;
  color:#0e8388;
}

.coming-sub{
  font-size:15px;
  line-height:1.6;
  color:#7a8a84;
  margin-top:14px;
}

.coming-btn{
  display:inline-block;
  margin-top:34px;
  padding:14px 42px;
  border-radius:40px;
  background:#0e8388;
  color:#fff;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  text-decoration:none;
  transition:0.3s;
}

.coming-btn:hover{
  background:#0b6b6f;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  header{
    padding:18px 40px;
  }

  nav{
    gap:32px;
    padding-left:40px;
  }
}

@media(max-width:900px){
  header{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px 24px;
    padding:18px 30px;
  }

  nav{
    gap:24px;
    padding-left:30px;
    flex-wrap:wrap;
    justify-content:center;
  }
}

@media(max-width:600px){
  header{
    flex-direction:column;
    gap:18px;
    padding:18px 20px;
  }

  nav{
    border-left:none;
    padding-left:0;
    gap:14px 18px;
  }

  .coming-card{
    padding:40px 26px;
  }

  .coming-card h1{
    font-size:30px;
  }

  .coming-msg{
    font-size:18px;
  }
}

/* ===== FOOTER (same as on the other pages) ===== */
.footer{
  margin-top:0;
}

.footer-body{
  position:relative;
  height:215px;
  background-color:#008080;
  background-image:url('../images/footer.webp');
  background-size:100% 205px;
  background-position:bottom center;
  background-repeat:no-repeat;
}

.footer-logo{
  position:absolute;
  top:24px;
  left:12%;
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.footer-logo .footer-logo-mark{
  width:62px;
  height:62px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footer-peaks{
  display:none;
}

.footer-nav{
  position:absolute;
  left:0;
  right:0;
  bottom:30px;
  display:flex;
  justify-content:center;
  gap:55px;
  flex-wrap:wrap;
  padding:0 20px;
}

.footer-nav a{
  color:#333;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-nav a:hover{
  color:#0e8d92;
}

.footer-copy{
  text-align:center;
  font-size:13px;
  color:#444;
  padding:16px;
  background:#fff;
}

@media(max-width:820px){
  .footer-body{
    height:auto;
    background-image:none;
    display:flex;
    flex-direction:column;
  }

  .footer-logo{
    position:static;
    margin:34px auto 24px;
  }

  .footer-peaks{
    display:block;
    width:100%;
    height:130px;
    margin-bottom:-1px;
  }

  .footer-nav{
    position:static;
    background:#fff;
    margin:0;
    padding:26px 22px;
    gap:14px 24px;
  }
}

/* Force Montserrat on all form controls (buttons, inputs, etc.) */
button,
input,
textarea,
select,
optgroup,
option{
  font-family:'Montserrat', sans-serif;
}
