/* ---------- FONTS ---------- */

@font-face {
  font-family: 'lato';
  src: url('../fonts/lato-regular-webfont.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'lato';
  src: url('../fonts/lato-bold-webfont.woff') format('woff');
  font-weight: 700;
}

/* ---------- VARIABLES ---------- */

:root{
  --color-primary:#0F6B6B;
  --color-text:#1F2D3D;
  --color-muted:#6B7280;

  --title-blue:#1696D2;

  --radius:16px;

  --container-max:1200px;
}

/* ---------- BASE ---------- */

html,
body{
  margin:0;
  padding:0;
  background:#ffffff;
  color:var(--color-text);
  font-family:"lato",sans-serif;
  font-size:18px;
  line-height:1.7;
  overflow-x:hidden;
}

body{
  position:relative;
}

.container{
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- BACKGROUND ---------- */

.bg-glow-top{
  position:fixed;
  top:-450px;
  right:-450px;

  width:1000px;
  height:1000px;

  border-radius:50%;

  background:#F4BDD7;

  filter:blur(180px);

  opacity:.45;

  z-index:-1;

  pointer-events:none;
}

.bg-glow-bottom{
  position:fixed;
  left:-450px;
  bottom:-450px;

  width:1000px;
  height:1000px;

  border-radius:50%;

  background:#B8CCFF;

  filter:blur(180px);

  opacity:.45;

  z-index:-1;

  pointer-events:none;
}

/* ---------- HEADER ---------- */

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;

  min-height:88px;

  background:transparent;

  padding:0 24px;

  box-shadow:none;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.brand-logo{
  width:58px;
  height:58px;
}

.brand-logo img{
  width:100%;
  height:100%;
}

.brand-title{
  font-size:22px;
  font-weight:700;
  color:#0F6B6B;
}

/* ---------- MENU ---------- */

.menu-toggle{
  background:none;
  border:none;
  cursor:pointer;
}

.menu-line{
  width:34px;
  height:2px;
  background:#1F2D3D;
  margin:5px 0;
}

.menu-text{
  font-size:14px;
  font-weight:700;
}

.nav-collapse{
  display:none;
}

.nav-collapse.open{
  display:flex;

  flex-direction:column;

  position:absolute;

  right:24px;
  top:88px;

  background:white;

  padding:24px;

  border-radius:16px;

  box-shadow:0 20px 50px rgba(0,0,0,.08);

  z-index:100;
}

.nav-collapse ul{
  list-style:none;
  margin:0;
  padding:0;
}

.nav-collapse li{
  margin-bottom:12px;
}

.nav-collapse a{
  text-decoration:none;
  color:#1F2D3D;
  font-weight:600;
}

/* ---------- HERO ---------- */

.hero{
  background:transparent;
  min-height:80vh;

  display:flex;
  align-items:center;

  padding:40px 0 80px;
}

.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:80px;
}

.hero-content{
  flex:1;
  max-width:620px;
}

.hero-title{
  margin:0;

  font-size:72px;

  line-height:1;

  color:var(--title-blue);
}

.hero-sub{
  display:block;

  margin-top:16px;

  font-size:26px;

  line-height:1.4;

  color:#5F6B7A;
}

.hero-features{
  list-style:none;

  margin:32px 0;

  padding:0;
}

.hero-features li{
  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-bottom:14px;
}

.check-icon{
  color:#22A447;
  font-weight:700;
}

.hero-meta{
  font-size:17px;
  color:#6B7280;
}

.hero-ctas{
  display:flex;
  gap:16px;
  margin-top:32px;
}

.btn{
  text-decoration:none;

  padding:14px 28px;

  border-radius:999px;

  font-weight:700;
}

.btn-primary{
  background:#1696D2;
  color:white;
}

.btn-ghost{
  border:1px solid #1696D2;
  color:#1696D2;
}

.hero-media{
  flex:0 0 420px;
  text-align:center;
}

.hero-media img{
  width:100%;
  max-width:420px;
  height:auto;
}

/* ---------- FOOTER ---------- */

.site-footer{
  margin-top:60px;

  padding:40px 0;

  background:transparent;

  border-top:1px solid rgba(0,0,0,.05);
}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.footer-nav a{
  text-decoration:none;
  color:#1F2D3D;
}

.footer-copy{
  text-align:center;
  margin-top:20px;
  color:#6B7280;
}

/* ---------- MOBILE ---------- */

@media(max-width:900px){

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

  .hero-title{
    font-size:42px;
  }

  .hero-sub{
    font-size:20px;
  }

  .hero-media{
    flex:auto;
  }

  .hero-media img{
    max-width:320px;
  }

  .hero-ctas{
    justify-content:center;
  }

}