*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
 
  color: #fff;
  background: #e5f2fb;
  font-family: 'Cera Pro', sans-serif;
  font-size: 18px;
}
body.scroll-done {
    background: #a9d8e8;
}
.site-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}
p{
    font-size: 18px;
    line-height: 1.5em;
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Venti CF';
    font-weight: 900;
    margin-bottom: 15px;
    margin-top: 0;
        color: #32395C;
}
h1, .h1{

}
h2, .h2{
 font-size: clamp(1.875rem, 1.5916rem + 1.1628vw, 2.5rem);
 color: #32395C;
 line-height: 1.27;
}

img {  }



/* ---------- SHARED CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1295px;
  margin-inline: auto;
  padding-inline: 30px;
}
.fade-in {
    transition: 0.5s all ease, 1s opacity ease;
 
    opacity: 0;
    position: relative;
}

.fade-in.onView {
 
    opacity: 1;
}
.fade-up {
    transition: 0.5s all ease, 1s opacity ease;
    top: 30px;
    opacity: 0;
    position: relative;
}

.fade-up.onView {
    top: 0;
    opacity: 1;
}

.fade-right {
    transition: 0.5s all ease, 1s opacity ease;
    right: -30px;
    opacity: 0;
    position: relative;
}

.fade-right.onView {
 right: 0px;
    opacity: 1;
}


.fade-left {
    transition: 0.5s all ease, 1s opacity ease;
    left: -30px;
    opacity: 0;
    position: relative;
}

.fade-left.onView {
 left: 0px;
    opacity: 1;
}


.flag-part {
    height: 120px;
}

.flag-part .flag-cover {}

.flag-part .flag-cover .flag__title {background-image: url(../images/flag-bg.svg);     font-size: 24px;
    line-height: 1;
    color: #32395C;
    padding: 30px 45px 76px 34px;
    font-weight: 800;
    background-repeat: no-repeat;
    width: 184px;
    text-align: center;
    transform: rotate(-10deg);
    left: -44px;
    position: relative;
    font-family: 'Venti CF';
    top: 7px;}




.hatched-intro .flag-part {
    height: 0px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 12px 0;
  display: flex;
}
.hero__header,
.hero__content { max-width: 1295px; margin-inline: auto; padding-inline: 30px; }

/* Leaf / drop pattern */

.top-brand-cover{
  position: relative;
}
.top-brand-cover:after {
  content: '';
  
 background-image: url(../images/page-top.svg);
     width: 100%;
    height: 120%;
    position: absolute;
    right: 0;
    top: 0;
    background-position: right top;
    background-repeat: no-repeat;
} 
.top-brand-cover::before{
    content: '';
       width: 100%;
    height: 120%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(178.41deg, #2F3C92 15.58%, #2E76BB 46.04%, #22BEEF 67.49%, #E5F2FB 94.22%);

}
/* ---------- HEADER ---------- */
.hero__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  text-decoration: none;
  color: #fff;
  line-height: 1;
  position: relative;
  top: 14px;
  transition: 0.5s all;
}
.logo__name {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 54px;
  font-weight: 700;
}
.logo__tag {
  display: block;
  letter-spacing: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px 6px 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.nav-pill__btn {
text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0;
    background: #FFF;
    color: #32395C;
    padding: 11px 15px;
    border-radius: 20px;
    margin-right: 16px;
    font-family: 'Venti CF';
        
        position: relative;
}
.nav-pill__btn:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px;
  transition: all 0.3s;
      background: linear-gradient(90deg, #F9A01D 12.04%, #FED103 91.65%, #FED103 93.28%);
  opacity: 0;
      transform: scale(1.01);
}
.nav-pill__btn:hover{
  
}
.nav-pill__btn:hover:after{
    opacity: 1;
}
.nav-pill__btn span {
    position: relative;
    z-index: 1;
}
.nav-pill__menu {
    width: 39px;
    height: 45px;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: url(../images/button-icon.svg);
    background-color: #00000000;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s all;
    position: relative;
    animation-timing-function: ease-out; animation-duration: 300ms;
}



.nav-pill__menu span {
  width: 32px;
  height: 3px;
  background: #FAAC18;
  border-radius: 2px;
  display: none;
  position: absolute;
}

.nav-pill__menu span:first-child{
    transform: rotate(34deg);
}
.nav-pill__menu span:last-child{
    transform: rotate(-56deg);
}


.overlay-menu.is-open + .site-header .nav-pill__menu {
    background: none;
}
.overlay-menu.is-open + .site-header .nav-pill__menu  span:first-child,
.overlay-menu.is-open + .site-header .nav-pill__menu  span:last-child{
    display: block;
}
/* ---------- CONTENT ---------- */
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0px;
  align-items: center;
  margin-top: 70px;
}

.hero__title {
    font-size: clamp(3.09rem, 2.4369rem + 2.488vw, 4.3806rem);
    font-weight: 900;
    line-height: 1em;
    margin: 0 0 14px;
    text-transform: uppercase;
    color: #FFF;
}
.hero__title .script {
 font-family: 'Aelgrith';
    text-transform: none;
 
    letter-spacing: 0;
    background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    margin-top: -10px;
    display: inline-block;
    line-height: 1.5;
    padding-right: 11px;
    
}
.hero__desc {max-width: 690px;margin: 0 0 27px;}
.hero__desc, .hero__desc p {font-size: 25px;line-height: 1.35;color: #e9efff;     font-weight: 400;}
 

.btn-primary {
display: inline-block;
    padding: 18px 28px;
    background: #f6b628;
    color: #32395C;
    font-weight: 900;
    letter-spacing: 0;
    font-size: 18px;
    text-decoration: none;
    border-radius: 999px;
     
     
    background: linear-gradient(90deg, #F9A01D 12.04%, #FED103 91.65%, #FED103 93.28%);
    font-family: 'Venti CF';
     transition: transform 0.3s ease;
      transform: scale(1);
}
.btn-primary:hover {
     
    transform: scale(1.03);
}

/* ---------- IMAGE ---------- */
.hero__image {
    position: relative;
    display: flex;
    margin-left: auto;
}
.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
 
  
 
  aspect-ratio: 1/1;
}
.hero__image-frame:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90.32deg, #F9A01D 2.26%, #FED103 95.72%, #FED103 97.63%);
    border-radius: 15px;
    right: -13px;
    bottom: -7px;
    z-index: -1;
}
.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
      border-radius: 15px;
    overflow: hidden;
}

/* ---------- OVERLAY MENU ---------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
   

  display: flex;
  
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  /*transition: opacity .35s ease, transform .35s ease, visibility .35s; */
      
    
}
.overlay-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.overlay-menu::before {
}
.overlay-menu__close {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #f6b628;
  color: #1f3fb0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
  display: none;
}
.overlay-menu__close:hover { transform: rotate(90deg); }

.overlay-menu__nav {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    overflow: auto;
    height: calc(100vh - 150px);
    margin-top: 150px;
     
}
.overlay-menu__nav ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.overlay-menu__nav li { margin: 40px 0; }
.overlay-menu__nav a {
  color: #fff; 
  text-decoration: none;
  font-size: clamp(1.875rem, 1.08rem + 3.2616vw, 3.6281rem);
  font-weight: 800;
  letter-spacing: 1px;
 
  transition: color .2s ease;
   font-family: 'Venti CF';
	    line-height: 1;
}
.overlay-menu__nav a:hover { 
      color: #F9A01D;
    background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }
.overlay-menu__cta { margin-top: 10px; }
.overlay-menu__nav li.button-mob {
  display: none;
}

/* */
.overlay-menu .menu-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.overlay-menu .menu-bg span.bg-cover {
    position: absolute;
    right: 0;
    bottom: -150px;
    width: 10px;
    height: 10px;
}

.overlay-menu .menu-bg .container {
    position: relative;
}

.overlay-menu .menu-bg span.bg-cover:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, #101841 -0.31%, #004B8D 49.69%, #2A6DB6 99.69%);
   
    opacity: 1;
    border-radius: 50%;
}
.overlay-menu.is-open .menu-bg span.bg-cover:after {
    width: 3900px;
    height: 3900px;
    opacity:1;
     transition: all 0.5s cubic-bezier(0.55, 0.12, 1, 1);
}

.overlay-menu__nav li {
    position: relative;
    top: -15px;
   
    opacity: 0;
    
}

.overlay-menu.is-open .overlay-menu__nav li {
    top: 0;
    opacity: 1;
     transition: all 0.5s;
     transition-delay: 0.5s;
}
/**/

/* ---------- ECOSYSTEM SECTION ---------- */
.ecosystem {
  position: relative;
  overflow: hidden;
  padding: 80px 0 59px 0;
}
.ecosystem__pattern {
 
}

.ecosystem__card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 44px 35px 32px 35px;
  z-index: 1;
}

.ecosystem__ribbon {
  position: absolute;
  top: 40px;
  right: -10px;
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px 12px 22px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  letter-spacing: .3px;
}

.ecosystem__title {
  text-align: center;
  max-width: 638px;
  margin-inline: auto;
	    line-height: 1.15;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #E5F2FB;
  border-radius: 10px;
  padding: 32px 28px 36px;
  text-align: center;
}
.feature-card__icon {
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  min-height: 143px;
}
.feature-card__icon svg {   }
.feature-card__title {
  font-weight: 900;
  font-size: clamp(1.5625rem, 1.4208rem + 0.5814vw, 1.875rem);
  margin-bottom: 10px;
}
.feature-card__desc {
  color: #3B3A3A;
  margin: 0 auto;
  max-width: 300px;
          font-weight: 400;

}

.ribbon-title span.title {
    background: linear-gradient(90deg, #F9A01D 5.31%, #FED103 92.26%, #FED103 94.04%);
    font-size: 24px;
    color: #32395C;
    font-weight: 900;
    font-family: 'Venti CF';
    border-radius: 3px;
    padding: 16px 25px;
    display: inline-block;
    position: relative;
    z-index: 1;

}

.ribbon-title {position: absolute;right: -38px;}

.ribbon-title span.right-part{
  background-image: url(../images/right-part.svg);
    width: 123px;
    display: block;
    position: absolute;
    height: 60px;
    top: 20px;
    right: -54px;
    z-index: 0;
    background-position: right top;
    background-repeat: no-repeat;

  }
  .founders .ribbon-title {
    top: 23px;
}
.included .ribbon-title {
    top: 33px;
        z-index: 1;
}
/* ---------- FOUNDATIONS SECTION ---------- */
.foundations {
  padding: 0px 0 0px;
}
.foundations__head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
      padding: 0 100px;
}
.foundations .flag-part {
    height: 42px;
}
.foundations__title {
   
 
  
  margin: 0 auto;
 
  text-align: center;
  flex: 1;
}

/* Flag */
.flag {
  position: relative;
  width: 120px;
  height: 130px;
  flex-shrink: 0;
}
.flag__pole {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1f3fb0;
  border-radius: 2px;
}
.flag__pole::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -4px;
  width: 20px;
  height: 8px;
  background: #1f3fb0;
  border-radius: 50%;
}
.flag__banner {
  position: absolute;
  left: 20px;
  top: 10px;
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px 12px 18px;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
  line-height: 1.15;
  transform: rotate(-3deg);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}

/* Grid */
.foundations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 51px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1142px;

  
}

/* Flip card */
.build-card {
  position: relative;
  perspective: 1200px;
}
.build-card::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #f6b628;
  border-radius: 20px;
  z-index: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.build-card:hover::after { opacity: 1; }

.build-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4.7;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.build-card:hover .build-card__inner,
.build-card:focus-within .build-card__inner {
  /* transform: rotateY(180deg); */
}

.build-card__front,
.build-card__back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.build-card__front {
    background-size: 105%;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-radius: 15px;
    background-position: top;
}
.build-card__label {
   width: 100%;
    background: #2F3C92;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    padding: 25px 10px;
    font-family: 'Venti CF';
    letter-spacing: 0.01em;
}

.build-card__back {
    color: #fff;
    /* transform: rotateY(180deg); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 30px;
    opacity: 1;
    left: -12px;
    top: -16px;
    width: 100%;
    height: 100%;
    overflow: visible;
    border-radius: 15px;
    opacity: 1;
}
.build-card__title {
 font-size: 35px;
    font-weight: 800;
    margin: 0 0 7px;
    color: #FFF;
}
.build-card__desc {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 26px;
  color: #e9efff;
      font-weight: 400;
}
 

.build-card__back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 12px;
    top: 19px;
    background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
    border-radius: 15px;
    z-index: 0;
    opacity: 0;
}
.build-card__back:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 12px;
    top: 19px;
    background: #2F3C92;
    border-radius: 15px;
    z-index: 1;
    transition: 0.4s all ease-in-out;
    opacity: 0;
}

.build-card__back * {
    position: relative;
    z-index: 1;
    animation-delay: 0.5s;
    opacity: 0;
     transition: 0.3s all ease-in-out;
}

.build-card__inner:hover .build-card__back {
     /* opacity:1; */
}
.build-card__inner:hover .build-card__back *{
     opacity: 1;
}
.build-card__inner:hover .build-card__back:before {
    left: 0;
    top: 0;
}

 .build-card__inner:hover .build-card__back:before {
   opacity: 1; 
}

.build-card::after {
    display: none;
}

 

.build-card__front {animation-delay: 0.3s;opacity: 1;transition: 0.3s all ease-in-out;}

 .build-card__inner:hover .build-card__front{opacity: 0;}

 

.build-card__inner {
        background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
    border-radius: 15px;
}
.build-card__inner .build-card__back a.learn-more {
        margin-top: auto;
       

      background: linear-gradient(90deg, #9ED4E4 34.14%, #22BEEF 93.75%);  


}
.build-card__inner .build-card__back a.learn-more:after{
  content: '';
 background: linear-gradient(90deg, #9ED4E4 -25.26%, #22BEEF 81.82%);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 30px;
opacity: 1;
    transition: all 0.5s;
}
.build-card__inner .build-card__back a.learn-more:hover:after{
opacity: 0;
}
.build-card__inner .build-card__back a.learn-more span {
    font-weight: 900;
    font-size: 16px;
}

.build-card__inner .build-card__back a.learn-more {
    min-width: 186px;
}

 

.build-card__inner .build-card__back a.learn-more span.learn-more__arrow {
    margin-left: auto;
    top:-1px;
    font-size: 0;
}

.build-card__front .is-img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: calc(100% - 86px);
    background-size: cover;
    background-position: center center;
}
 
.build-card__inner {
    position: relative;
}

.build-card__front .build-card__label {
    height: 86px;
}

/* Learn more pill */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #9ED4E4 -25.26%, #22BEEF 81.82%);
  color: #32395C;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0;
  padding: 7px 0px 6px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: 'Venti CF';
  height: 45px;
}
.learn-more__arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f6b628;
  color: #1f3fb0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  transition: transform .2s ease;
  background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
  top: 0px;
  transform: rotate(0deg);
  position: relative;
}
.learn-more__arrow:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
background-image: url(../images/button-arrow.svg);
background-repeat: no-repeat;
background-position: center;
}
.learn-more:hover .learn-more__arrow {
    transform: rotate(-35deg);
}
.learn-more:hover {
    background: linear-gradient(90deg, #9ED4E4 34.14%, #22BEEF 93.75%);
}
a.learn-more.dark {
    background: #2B6DB6;
    color: #FFF;
    background: linear-gradient(90deg, #2F3C92 -16.74%, #2E76BB -16.74%, #22BEEF 100.01%);
}

a.learn-more.dark:hover {
    background: linear-gradient(90deg, #2F3C92 -16.74%, #2E76BB -16.74%, #22BEEF 100.01%);
}
a.learn-more.dark > span:not(.learn-more__arrow) {
    margin-right: 19px;
}
a.learn-more.dark span.mob-text {
    display: none !important;
}
a{
  transition: all 0.5s;
}
a.learn-more.dark {
    position: relative;
    overflow: hidden;
}

a.learn-more.dark:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 20px;
    background: #2B6DB6;
    z-index: 0;
    transition: all 0.5s;
}

a.learn-more.dark > * {
    z-index: 1;
}

a.learn-more.dark:hover:after {
    opacity: 0;
}
/* ---------- FOUNDERS ---------- */
.founders {padding: 80px 0  13px 0;width: 100%;overflow: hidden;}
.founders__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  position: relative;
}
.founders__text {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    color: #2b3a67;
    font-size: 15px;
    line-height: 1.65;
    width: 55%;
}

.founders__text p {margin: 0 0 20px;
    color: #3B3A3A;
    font-size: 17.5px;}
    
.founders__motto {
    color: #3874B9 !important; 
    font-weight: 900;
    letter-spacing: -0.00em;
    font-size: 22px !important;
    line-height: 1.19;
    font-family: 'Venti CF';
    font-weight: 900;
}
.founders__title {
 /* color: #1f3fb0; */
    /* font-weight: 800; */
    /* font-size: clamp(26px, 2.8vw, 38px); */
    line-height: 1.23;
    margin: 0 0 11px;
}
.founders__motto {  }
.founders__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  width: calc(45% - 15px);
  margin-left: 15px;
}
.founders__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media(max-width:1200px) and (min-width:992px){
  .founders__media img{
    height: 70%;
  }
  
}
.founders__ribbon {
  position: absolute;
  top: 30px;
  right: -10px;
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px 12px 22px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  z-index: 2;
}

/* ---------- HATCHED INTRO ---------- */
.hatched-intro {/* background: #eaf3ff; */padding: 80px 0 30px;}
.hatched-intro__head { display: flex; gap: 30px; align-items: flex-start; }
.hatched-intro__heading { flex: 1; text-align: center; }

.hatched-intro__title img, .hatched-intro__title svg {
    margin-right: 5px;
    position: relative;
    top: 8px;
}
.eyebrow {
  
    font-size: clamp(25px, 0.6024vw + 22.47px, 30px);
    margin-bottom: 12px;
    font-family: 'Venti CF';
    color: #3874B9;
        font-weight: 900;
	    line-height: 1.42em;
}
.hatched-intro__title {
   

  margin: 0 0 8px;
}
.hatched-intro__desc {
  color: #2b3a67;
 font-size: 22px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}
.hatched-intro__desc p {
    font-size: 22px;
	 color: #3B3A3A;
}
.hatched-intro__desc strong {   }

.flag--sm { width: 100px; height: 110px; }
.flag--sm .flag__banner { font-size: 12px; padding: 10px 22px 10px 14px; }

/* Hatched logo wordmark */
.hatched-logo { font-weight: 800; white-space: nowrap; }
.hatched-logo__a { color: #2a73d4; }
.hatched-logo__b { color: #1f3fb0; }
.hatched-logo__dot { color: #f37021; margin: 0 1px; }
.hatched-logo__c { color: #f37021; }
.hatched-logo--sm { font-size: .95em; }

/* Journey */
.journey {
  position: relative;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1130px;
}
.journey__path {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}
.journey__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1;
}
.journey__step { text-align: center; }
.journey__icon {
  width: 110px;
  height: 86px;
  margin: 0 auto 18px;
}
.journey__icon svg { width: 100%; height: 100%; }
.journey__step h4, .journey__step h3 {margin: 0;line-height: 1.15;font-size: clamp(25px, 0.6024vw + 22.47px, 30px);max-width: 180px;margin-left: auto;margin-right: auto;}


.journey svg {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    max-width: 918px;
    display: block;
    transform: translate(-50%, 0px);
    left: 50%;
    top:-8px;
}

.journey {
    position: relative;
}

.animation .journey__icon,
.journey__step.animation h4,
.journey__step.animation h3 {
    position: relative;
   
}

/* on view animation */
.animation.onView .journey__icon {
    
}

.journey__step.animation.onView h4,
.journey__step.animation.onView h3 {
   

    /* delay for h4 */
  
}

/* ---------- LEARN ---------- */
.learn {/* background: #eaf3ff; */padding: 50px 0;}
.learn__card {
background: #fff;
    border-radius: 15px;
    padding: 20px 40px 18px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 107px;
    align-items: center;
}
.learn__title {
 
  margin: 0 0 43px;
}
.learn__list { list-style: none; padding: 0; margin: 0; }
.learn__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 48px 10px;
  border-top:0.5px solid #22BEEF;
  color: #2B6DB6;
  font-size: clamp(25px, 0.6024vw + 22.47px, 30px);
  font-family: 'Venti CF';
      font-weight: 900;
}

.learn__check {
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
 
  background-image: url(../images/check.svg);
}


.list-wrapper {
    height: 387px;
    overflow: hidden;
    position: relative;
}

.scroll-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 1.3s ease;
}

.scroll-list li {
    height: 97px; /* 150 / 4 */
    line-height: 37.5px;
	    position: relative;
    top: -1px;
}

/* Dark pill button */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f3fb0;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
}
.btn-dark__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f6b628;
  color: #1f3fb0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .2s ease;
}
.btn-dark:hover .btn-dark__arrow { transform: translateX(3px); }

/* ---------- WATCH ---------- */
.watch {/* background: #eaf3ff; */padding: 50px 0 50px;}
.watch__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}
.watch__title {
 
 
  margin: 0 0 28px;
}
.watch__video {
  background: #2a3556;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.watch__play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FAAC18;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease;
}
.watch__play:hover { transform: scale(1.08); }
.watch__play svg {width: 72px;height: 72px;margin-left: 4px;}


.watch__video {
    position: relative;
    left: 0;
    top: 0;
    transition: 0.4s all;
    z-index: 9;
    border-radius: 15px;
    transform-origin: bottom right;
}

.watch__video:hover {
    left: -15px;
    top: -10px;
}

.watch__video_cover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(90.32deg, #F9A01D 2.26%, #FED103 95.72%, #FED103 97.63%);
    z-index: 0;
    border-radius: 15px;
}

.watch__video_cover {
    position: relative;
    width: 795px;
}

/* ---------- AUDIENCE ---------- */
.audience {
  position: relative;
  overflow: hidden;
  padding: 11px 0 5px;
  text-align: center;
}
.audience__pattern {
 
}
.audience .container { position: relative; z-index: 1; }
.audience__eyebrow {margin-bottom: 14px;font-size: clamp(25px, 0.6024vw + 22.47px, 30px);font-family: 'Venti CF';font-weight: 900;margin-bottom: 10px;}
.audience__title {
  font-weight: 900;
  line-height: 1.28;
  margin: 0 0 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: 685px;
}
.audience__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  max-width: 960px;
  margin: 0 auto;
}
.tag {
   background: #fff;
    color: #2F3C92;
    font-weight: 900;
    font-size: 30px;
    padding: 14px 28px;
    border-radius: 999px;
     
    font-family: 'Venti CF';
    opacity: 0;
}
.animation.left-side {
    left: -20px;
    position: relative;
    opacity: 0;
    transition: 0.3s all;
}
.animation.right-side {
    right: -20px;
    position: relative;
    opacity: 0;
    transition: 0.3s all;
}

.animation.left-side.onView {
    opacity: 1;
    left: 0;
}
.animation.right-side.onView {
    opacity: 1;
    right: 0;
}
.animation.is-center {
      position: relative;
    opacity: 0;
    transition: 0.3s all;
    top:15px;
}
.animation.onView.is-center {
        top:0px;
    opacity: 1;
}

/* ---------- INCLUDED SECTION ---------- */
.included {
  /* background: #eaf3ff; */
  padding: 60px 0 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.included__card {
  position: relative;
  background: linear-gradient(117.01deg, #2F3C92 -2.95%, #2E76BB 58.76%, #22BEEF 105.81%);
  border-radius: 15px;
  padding: 54px 40px 27px 40px;
}
.included__card:after {
    content: '';
    position: absolute;
    width: 52.5%;
    height: 44%;
    background-image: url(../images/shape-top.svg);
    top: 0;
    right: 3%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right top;
}
.included__pattern {
  position: absolute;
   
}
.included__ribbon {
  position: absolute;
  top: 30px;
  right: -10px;
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px 12px 22px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  z-index: 2;
}

.included__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  gap: 0;
  /* align-items: center; */
  margin-bottom: 27px;
  flex-wrap: wrap;
}
.included__book {
  filter: drop-shadow(0 15px 25px rgba(0,0,0,.3));
  width: 55%;
  padding-left: 0px;
  max-width: 548px;
  margin-right: auto;
}
.included__book img {
  width: 100%;
  border-radius: 6px;
}
.included__head .included__text {
    width: 45%;
    margin-right: auto;
}
.included__title {
  color: #fff;
  margin: 0 0 11px;
}
.included__text p {
  color: #e9efff;
  font-size: 22px;
  /* line-height: 1.6; */
  margin: 0 0 12px;
}
.included__text p strong { color: #fff; }
.included__tagline {
  color: #f6b628 !important;
  font-size: 30px !important;
  margin-top: 20px !important;
  font-family: 'Venti CF';
  font-weight: 800;
	background: linear-gradient(90.32deg, #F9A01D 2.26%, #FED103 95.72%, #FED103 97.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        line-height: 1.15;
}

/* Slider */
.slider {
  position: relative;
  z-index: 1;
}
.slider__track {
 
}
 

 

.inc-card {
  background: #fff;
  border-radius: 15px;
  padding: 24px 22px 23px 22px;
  scroll-snap-align: start;
}
.inc-card__media {
  position: relative;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  margin-bottom: 18px;
}
.inc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.inc-card__num {
position: absolute;
    top: 11px;
    left: 15px;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    background: linear-gradient(90deg, #101841 -0.31%, #004B8D 49.69%, #2A6DB6 99.69%);
    font-family: 'Venti CF';
    display: block;
    text-align: center;
    line-height: 53px;
}
.inc-card h3 {
color: #2F3C92;
    font-size: 30px;
    font-weight: 900;
    margin: 25px 0 12px;
    line-height: 0.92;
    font-family: 'Venti CF';
    max-width: 230px;
    width: 100%;
}
.inc-card p {
color: #3B3A3A;
    line-height: 1.5;
    margin: 0;
	font-size:18px;
}
.slider-included {
    margin: 0 -10px;
}

.slider-included .inc-card {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 20px);
    height: 100%;
}

.slider-included .slick-track {
    display: flex;
}

.slider-included .slick-track .slick-slide {
    float: none;
    height: auto;
}


/* arrows */

.foundations .controls,
.included .controls-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foundations .controls span.arrow-s,
.included .controls-1 span.arrow-s-1{
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(180deg, #F9A01D 0.33%, #FED103 91.08%, #FED103 92.93%);
            position: relative;
            cursor: pointer;
}

.foundations .controls ul.slick-dots,
.included .controls-1 ul.slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    padding: 0 30px;
}

.foundations .controls ul.slick-dots li,
.included .controls-1 ul.slick-dots li{
    width: 13px;
    height: 13px;
    margin: 0 5px;
}

.foundations .controls ul.slick-dots li button,
.included .controls-1 ul.slick-dots  li button{
    background-color: oklch(0.4 0.14 271.86 / 0.25);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.foundations .controls ul.slick-dots li.slick-active button,
.included .controls-1 ul.slick-dots li.slick-active button{
    background-color: #22BEEF;
}
.foundations .controls ul.slick-dots li.slick-active button:after,
.foundations .controls ul.slick-dots li.slick-active button:before,
.included .controls-1 ul.slick-dots li.slick-active button:after,
.included .controls-1 ul.slick-dots li.slick-active button:before{
    display: none;
}
  .foundations .controls span.arrow-s:after,
  .included .controls-1 span.arrow-s-1:after{   
     content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/button-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .foundations .controls span.prev.arrow-s:after,
  .included .controls-1 span.prev-1.arrow-s-1:after{
    transform: rotate(180deg);
}

.included .controls-1 ul.slick-dots li button {
    background-color: #FFFFFF;
}

.included .controls-1 ul.slick-dots li.slick-active button {
    background-color:#FED103;
}

 
/* arrows end */
/* ---------- CONTACT ---------- */
.contact {
 padding: 70px 0 34px;
 width: 100%;
 overflow: hidden;
}
.contact__head { text-align: center; margin-bottom: 44px; }
.contact__title {
    margin: 10px 0 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}
.contact__grid .ribbon-title {
    top: 21px;

}


.contact__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
        position: relative;
}

.contact__form {
 background: linear-gradient(90deg, #2F3C92 -10.61%, #2E76BB 51.93%, #22BEEF 112.02%);

  border-radius: 15px;
  padding: 33px 40px 36px;
  color: #fff;
      width: 58%;
}
.contact__form-title {
margin: 0 0 24px;
    font-size: clamp(1.5625rem, 1.3051rem + 0.9804vw, 2.1875rem);
    color: #FFF;
}
.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.contact__fields input {
  border: none;
  outline: none;
  background: #fff;
  color: #1f3fb0;
  font-family: inherit;
  font-size: 14px;
  padding: 16px 22px;
  border-radius: 999px;
  width: 100%;
}
.contact__fields input::placeholder { color: #6d7fa8; }
.contact__wide { grid-column: 1 / -1; }
.contact__submit {
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease;
}
.contact__submit:hover { transform: translateY(-2px); }

.contact__info {position: relative; border-radius: 15px;padding: 68px 53px 46px 55px;overflow: hidden;width: 40%; 

background-image: url(../images/footer-white.svg);
    background-repeat: no-repeat;
    background-color: #FFF;
        background-position: top right;
  }
.contact__info-pattern {
 
}
.contact__ribbon {
  position: absolute;
  top: 26px;
  right: -10px;
  background: #f6b628;
  color: #1f3fb0;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px 12px 22px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  z-index: 2;
}
.contact__logo {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 29px;
  line-height: 1;
}
.contact__logo-name {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(90deg, #1f3fb0 0%, #3b6ad9 70%, #5da8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__logo-tag {
  display: block;
  color: #1f3fb0;
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
  margin-top: 4px;
}
.contact__info p {
  position: relative;
  z-index: 1;
  color: #32395C;
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
  max-width: 360px;
}
.contact__info p.large {
    font-weight: 700;
    color: #2A6DB5;
    margin-bottom: 20px;
}



/* */

/* ================================
   EARLY OFFER SECTION
================================ */

.early-offer {padding: 14px 0 0 0;}

.container {
}

/* Header */

.early-offer__header {
    text-align: center;
    margin-bottom: 43px;
}

.early-offer__tag {
    font-size: 18px;
    font-weight: 600;
    color: #3c6fb1;
    margin-bottom: 10px;
}

.early-offer__title {margin-bottom: 2px;}

.early-offer__subtitle {
    font-size: 20px;
    margin: 0 auto;
    max-width: 740px;
    color: #3B3A3A;
}
.early-offer__subtitle p{
	 font-size: 20px;
}
/* Card */

.early-offer__card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-left: auto;
    margin-right: auto;
    max-width: 677px;
}

/* Top Gradient Bar */

.early-offer__card-top {
    background: linear-gradient(90deg, #ff9a1a 0%, #ffd200 100%);
    padding: 24px 25px 21px 25px;
}
.early-offer__card-top h2 {
    margin: 0;
    text-align: center;
        font-size: 35px;
            line-height: 1;
}
.early-offer__card-top img {
    margin-bottom: -7px;
}

.early-offer__program {
    display: flex;
    align-items: center;
    color: #2d3a55;
    margin: 0;
}

.early-offer__program img {
    height: 32px;
}

/* Card Body */

.early-offer__card-body {
    padding: 26px 30px;
}

.early-offer__deadline {
    text-align: center;
    font-size: 22px;
    color: #3874B9;
    margin-bottom: 30px;
    font-family: 'Venti CF';
    font-weight: 900;
}
.early-offer__card-body > h3 {
    text-align: center;
    color: #3874B9;
    font-size: 22px;
        margin-bottom: 33px;
}

/* Grid */

.early-offer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: start;
}

/* Price Box */

.early-offer__price-box {
    background: #EFF9FF;
    padding: 38px 15px;
    border-radius: 16px;
    text-align: center;
    max-width: 252px;
}

.early-offer__price {
    font-size: 50px;
    font-weight: 900;
    color: #22BEEF;
    margin-bottom: 20px;
    font-family: 'Venti CF';
    border-bottom: 1px dashed #3874B9;
    padding-bottom: 10px;
    border-image: repeating-linear-gradient(90deg, #3874B9 0 2px, /* dash length */ transparent 0px 8px /* gap length */) 1;
}

.early-offer__price-note {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    font-weight: 300;
}

/* Features */

.early-offer__features h4 {
font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    max-width: 220px;
    width: 100%;
}

.early-offer__features ul {
    padding-left: 20px;
}

.early-offer__features li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2F3C92;
    font-weight: 500;
}

 
 
/* Bottom */

.early-offer__bottom {
    text-align: center;
    margin-top: 25px;
}

.early-offer__bottom p {
    margin-bottom: 6px;
 
}
.early-offer__bottom * {
    font-size: 22px;
    color: #2B6DB6;
        font-family: 'Venti CF';
            font-weight: 500;
}

.early-offer__bottom a {
    color: #356dad;
    text-decoration: underline;
}
.early-offer__cta {
margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 535px;
}

.early-offer__cta a.learn-more.dark {
    width: 100%;
}

.early-offer__cta a.learn-more.dark span.learn-more__arrow {
    margin-left: auto;
}

.early-offer__cta a.learn-more.dark span:not(.learn-more__arrow) {
    display: block;
    text-align: center;
    width: calc(100% - 45px);
}
.early-offer .flag-part {
    height: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

    .early-offer__title {
        font-size: 30px;
    }

    .early-offer__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .early-offer__price {
       
		        font-size: 40px;
        display: inline-block;
        padding-left: 30px;
        padding-right: 30px;
    }

}

.early-offer__grid .early-offer__features {
    width: 50%;
}

/* */
.contact__form .gform-body .ginput_container input {
    border: none;
    outline: none;
    background: #fff;
    color: #1f3fb0;
    font-family: inherit;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    width: 100%;
    line-height: 1.5 !important;
    min-height: auto;
    height: inherit;
}

.contact__form .gform-body .gform_fields {
    grid-row-gap: 14px;
}
.contact__form .gform_footer input.gform_button {
color: #32395C !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    border: none !important;
    padding: 15px 27px 13px 28px !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    -webkit-transition: -webkit-transform .2s ease !important;
    transition: -webkit-transform .2s ease !important;
    -o-transition: transform .2s ease !important;
    transition: transform .2s ease !important;
    transition: transform .2s ease, -webkit-transform .2s ease !important;
    height: inherit !important;
    min-height: inherit !important;
    max-height: inherit !important;
    line-height: 1.5 !important;
    text-transform: uppercase !important;
    background: linear-gradient(90.32deg, #F9A01D 2.26%, #FED103 95.72%, #FED103 97.63%);
    font-family: 'Venti CF' !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.00em !important;
        transition: transform 0.3s ease;
    transform: scale(1);
}
.site-footer p span {
    text-decoration: underline;
}
.contact__form .gform_footer input.gform_button:hover {
    
    transform:scale(1.05);
}

.contact__form .gform_validation_errors {
    display: none !important;
}

.contact__form .gform-body .ginput_container input::-webkit-input-placeholder { color: #6d7fa8 !important; }

.contact__form .gform-body .ginput_container input::-moz-placeholder { color: #6d7fa8 !important; }

.contact__form .gform-body .ginput_container input:-ms-input-placeholder { color: #6d7fa8 !important; }

.contact__form .gform-body .ginput_container input::-ms-input-placeholder { color: #6d7fa8 !important; }

.contact__form .gform-body .ginput_container input::placeholder { color: #6d7fa8 !important; }
.contact__form .gform-theme--framework .gfield_validation_message {
    color: #d3d3d3;
}
.slick-dots li button:before{
	display:none;
}
/* ---------- FOOTER ---------- */
.site-footer {
  
  padding: 20px 0 30px;
  color: #1f3fb0;
  font-size: 14px;
	    background-color: #a9d8e8;

}
.two-wrap-section {
    background: #DEEFF9;
    background: linear-gradient(177deg, rgb(234 243 255) 0%, #a9d8e8 100%);
}
.site-footer .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.site-footer p {    margin: 0;
    font-size: 15px;
    color: #32395C;
    font-family: 'Cera Pro';
    font-weight: 500; }
.site-footer a { color: #32395C; text-decoration: underline;  }
.site-footer a em { color: #f6b628; font-style: normal; }
.site-footer p img,
.site-footer p svg{
    display: inline-block;
    position: relative;
    top: 3px;
}
site-footer p a {
    text-decoration: underline;
}

.site-footer p a:hover {
    color: #2f489b;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { padding: 28px 0 60px; }
  .hero__content { gap: 40px; margin-top: 50px; }
}

@media (max-width: 860px) {
  .site-header__inner img,
  .site-header__inner .logo svg{
     width: 193px !important;
	  transition:all 0.3s;
	  
}
  .nav-pill__btn {
    display: none;
}
  .hero__content {
    grid-template-columns: 1fr;
    
  }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__image-frame { margin: 0 auto; }
  .logo__name { font-size: 44px; }

  .included { padding: 40px 0 60px; }
  .included__card { padding:50px 24px 20px; }
  .included__head { grid-template-columns: 1fr; gap: 24px; text-align: center; margin-bottom: 36px; }
  .included__book { max-width: 220px; margin: 0 auto; }
 
  

  .founders { padding: 50px 0 0px 0; }
  .founders__grid { grid-template-columns: 1fr; gap: 24px; }
  .founders__text { padding: 36px 26px; }
  .founders__media { aspect-ratio: 4/3; }

  .hatched-intro { padding: 40px 0 60px; }
  .hatched-intro__head { flex-direction: column; align-items: center; gap: 10px; }
  .journey__steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .journey__path { display: none; }

  .learn {padding: 0px 0;background: #FFF;}
  .learn__card {grid-template-columns: 1fr;gap: 30px;padding: 40px 0px;}
  .learn__list li { font-size: 25px; }

  .watch { padding: 40px 0 60px; }
  .watch__grid { grid-template-columns: 1fr; gap: 30px; }

  .audience { padding:20px 0 50px; }
  .audience__tags { gap: 12px; }
  .tag {font-size: 25px;padding: 10px 18px;}

  .foundations { padding: 50px 0 70px; }
  .foundations__head { gap: 16px; margin-bottom: 30px; flex-direction: column; align-items: flex-start;         padding-left: 0;
        padding-right: 0; }
  .foundations__title { padding-right: 0; text-align: center; width: 100%; }
  .foundations__grid { grid-template-columns: 1fr; gap: 22px; }
  .build-card__inner { aspect-ratio: 5 / 3.8; }

  .ecosystem { padding: 60px 0; }
  .ecosystem__card { padding: 0px 0px 40px; }
  .ecosystem__grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .ecosystem__title { margin-bottom: 20px; }
}
@media (max-width: 767px) {
.hero__header, .hero__content,
.site-header__inner {
   
    padding-inline: 25px;
}
    .nav-pill {
        padding: 8px 20px 8px 20px;
    }
        .overlay-menu.is-open + .site-header .nav-pill__menu {
      
        right: 0 !important;
    }
    .overlay-menu__nav li {
    margin: 30px 0;
}
    .overlay-menu__nav li.button-mob {
        padding-bottom: 30px;
        display: block;
        padding-top: 20px;
    }
.overlay-menu__nav {
   
    height: calc(100vh - 110px);
    margin-top: 110px;
}
}
@media (max-width: 600px) {
  .slider__track { grid-auto-columns: 100%; }
  .inc-card h3 { font-size: 25px; }
}
@media (max-width: 640px) {
  .hero { padding: 22px 0 50px; }
  .hero__header { gap: 12px; }
 
  .nav-pill__btn { font-size: 12px; letter-spacing: .5px; }
  .nav-pill__menu {  }
  .logo__name { font-size: 36px; }
  .logo__tag { font-size: 11px; letter-spacing: 4px; }
  .hero__content { margin-top: 36px; gap: 32px; }
  .hero__title { font-size: clamp(28px, 8vw, 44px); }
  .hero__desc, .hero__desc p { font-size: 20px; }
  .btn-primary { padding: 14px 28px; font-size: 16px; }
  

 
  .ecosystem__ribbon { top: 20px; right: -6px; font-size: 12px; padding: 8px 20px 8px 16px; }
  .feature-card { padding: 26px 20px 30px; }
  .feature-card__icon {  }
  .feature-card__title {   }
  .feature-card__icon {
     min-height: 115px;
}
.feature-card__icon img {
    max-height: 115px;
}
}

@media (max-width: 420px) {
  .nav-pill__btn { display: none; }
  .nav-pill {   }
  .overlay-menu__close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 28px; }
}

/* ==========================================================================
   WORDPRESS THEME OVERRIDES
   Nav is now a fixed <header class="site-header"> outside the .hero section.
   ========================================================================== */

/*  Site Header (replaces .hero__header inside .hero)  */
.site-header__inner img,
.site-header__inner .logo svg {
    width: 100%;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 34px 0;
  /* Transparent overlay shows the hero gradient beneath */
  pointer-events: none; /* let clicks pass through to page */
  transition: 0.5s all;
}
.site-header__inner {
    pointer-events: all;
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-header.sticky {
    padding: 10px 0;
       background: #2F3C92;
	    background: linear-gradient(90deg, #2F3C92 -22.78%, #2F3C92 50.17%, #2F3C92 123.12%);
    

}

.page-template-default .site-header {
    padding: 10px 0;
    background: #2F3C92;
    background: linear-gradient(90deg, #2F3C92 -22.78%, #2F3C92 50.17%, #2F3C92 123.12%);
}

.page-template-default .site-header .logo {
    max-width: 200px;
    top: 0;
}

.hide-header {
	transform: translateY(-100%);
}
.overlay-menu.is-open + header#site-header {
        background: none;
    backdrop-filter: blur(0px);
    transition: 0.0s all;
}
.site-header.sticky .logo {
    max-width: 200px;
    top: 0;
}
/*  Hero section: add top padding so content clears the fixed nav  */
.hero {
  padding-top: 212px;
}
.hero__content {
  margin-top: 0px; /* reduced since padding-top already applied to .hero */
}

/* Remove old .hero__header rule (no longer used in WP template)  */
/* .hero__header is not output by header.php  styles kept for reference only */

/* No-flex fallback */
.noflex-fallback {
  padding: 80px 0;
  text-align: center;
  background: #eaf3ff;
  color: #2b3a67;
  font-size: 16px;
}

@media (max-width: 860px) {
  .site-header { padding: 16px 0; }
  .hero {         padding-top: 170px;
        padding-bottom: 90px; }
}
@media (max-width: 600px) {
  .site-header { padding: 12px 0; }
 
}
@media (min-width: 1201px) {
body{
  background-image: url(../images/body-bg.jpg);
      background-attachment: fixed;
    background-size: cover;
}}


body::after {
    content: "";
    display: none;
    background-image: url(../images/button-icon-hover.svg);
}


.default-page{
    margin-top:150px;
    margin-bottom:50px;
}
.default-page p, 
.default-page h1, 
.default-page h2, 
.default-page h3, 
.default-page h4, 
.default-page h5, 
.default-page h6, 
.default-page li, 
.default-page a,
.default-page th,
.default-page tr,
.default-page td{ 
    color:#32395C;
}