@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@700;800&display=swap');

:root{
  --navy:#071a35;
  --blue:#0d6fdc;
  --muted:#718096;
  --line:#e7ebf1;
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:"DM Sans",sans-serif;color:var(--navy);background:#fff}
a{text-decoration:none;color:inherit}

.intro-header{
  height:78px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  padding:0 clamp(24px,7vw,110px);
  background:#fff;
  position:relative;
  z-index:5;
}

.intro-brand{display:flex;align-items:center}
.intro-brand img{width:190px;height:auto;display:block}

.intro-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:32px;
  color:#4d5c72;
  font-size:13px;
  font-weight:600;
}

.intro-nav a:hover{color:var(--blue)}

.intro-menu{
  display:none;
  margin-left:auto;
  width:40px;height:40px;
  border:1px solid #dce3ec;
  border-radius:9px;
  background:#fff;
  padding:9px;
}
.intro-menu span{display:block;height:2px;background:#172b49;margin:4px 0;border-radius:3px}

.intro-main{
  min-height:calc(100vh - 78px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:55px 24px 90px;
  background:
    radial-gradient(circle at 50% 48%,rgba(13,111,220,.07),rgba(255,255,255,0) 30%),
    #fff;
}

.intro-content{
  width:min(650px,100%);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.intro-logo{
  width:min(410px,76vw);
  height:auto;
  display:block;
  margin-bottom:20px;
}

.intro-kicker{
  color:var(--blue);
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  margin:0 0 13px;
}

.intro-content h1{
  font-family:Manrope,sans-serif;
  font-size:clamp(42px,6vw,68px);
  line-height:1;
  letter-spacing:-2.5px;
  margin:0 0 18px;
}

.intro-subtitle{
  max-width:510px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.get-card{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:220px;
  padding:15px 17px 15px 24px;
  border-radius:10px;
  color:#fff;
  background:var(--blue);
  box-shadow:0 12px 28px rgba(13,111,220,.22);
  font-size:14px;
  font-weight:700;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.get-card:hover{
  transform:translateY(-2px);
  background:#075fc4;
  box-shadow:0 16px 34px rgba(13,111,220,.28);
}

.arrow{
  width:34px;height:34px;
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.15);
  font-size:21px;
  line-height:1;
}

.intro-note{
  color:#9aa4b4;
  font-size:11px;
  margin:17px 0 0;
}

@media(max-width:700px){
  .intro-header{height:68px;padding:0 18px}
  .intro-brand img{width:155px}
  .intro-menu{display:block}
  .intro-nav{
    display:none;
    position:absolute;
    left:12px;right:12px;top:76px;
    padding:15px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:0 16px 35px rgba(20,45,90,.1);
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }
  .intro-nav.open{display:flex}
  .intro-nav a{padding:12px;border-radius:7px}
  .intro-nav a:hover{background:#f5f8fc}
  .intro-main{min-height:calc(100vh - 68px);padding-top:35px}
  .intro-logo{width:min(330px,82vw);margin-bottom:16px}
  .intro-content h1{font-size:47px}
  .intro-subtitle{font-size:14px;max-width:360px}
}


.intro-footer{
  border-top:1px solid #e7ebf1;
  background:#fbfcfe;
  padding:20px 0;
}

.intro-footer-inner{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:25px;
}

.footer-brand{
  display:flex;
  align-items:baseline;
  gap:10px;
}

.footer-title{
  color:#0a2344;
  font-family:Manrope,sans-serif;
  font-size:15px;
  font-weight:800;
}

.footer-tagline{
  color:#8a96a8;
  font-size:10px;
}

.footer-meta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#8995a7;
  font-size:10px;
}

.footer-meta a{
  color:#607086;
}

.footer-meta a:hover,
.created-by a:hover{
  color:#0d6fdc;
}

.footer-dot{
  color:#c2c9d3;
}

.created-by{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  color:#8995a7;
  font-size:10px;
}

.created-by strong{
  color:#1b2f4d;
}

.created-by a{
  color:#52637b;
  font-weight:700;
}

@media(max-width:700px){
  .intro-footer{
    padding:18px 0;
  }

  .intro-footer-inner{
    grid-template-columns:1fr;
    gap:10px;
    text-align:center;
  }

  .footer-brand,
  .footer-meta,
  .created-by{
    justify-content:center;
  }

  .footer-brand{
    justify-content:center;
  }
}


/* Shared footer on the landing page */
.site-footer{
  border-top:1px solid #e7ebf1;
  background:#fbfcfe;
  color:#52637b;
  padding:30px 0 16px;
}
.site-footer .container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}
.site-footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:30px;
}
.footer-brand img{
  width:150px;
  display:block;
}
.footer-brand p{
  color:#8a96a8;
  font-size:10px;
}
.footer-column h4{
  color:#172b49;
  font-size:11px;
  margin:0 0 10px;
}
.footer-column a,.footer-column span,.footer-column strong{
  display:block;
  color:#758399;
  font-size:10px;
  margin:7px 0;
}
.footer-column strong{color:#172b49;font-size:12px}
.footer-column a:hover{color:#0d6fdc}
.profile-links{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.profile-links a{
  display:inline-block;
  border:1px solid #dce3ec;
  border-radius:6px;
  padding:5px 8px;
}
.site-footer .footer-bottom{
  border-top:1px solid #e7ebf1;
  margin-top:22px;
  padding-top:12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#9aa4b4;
  font-size:9px;
}
@media(max-width:700px){
  .site-footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
  .site-footer .footer-bottom{flex-direction:column}
}
@media(max-width:430px){
  .site-footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
}


/* Landing-page footer refinement */
.site-footer{
  padding:34px 0 18px;
}
.site-footer-grid{
  grid-template-columns:2.2fr 1fr 1.1fr 1.35fr;
  align-items:start;
}
.footer-brand img{
  width:190px;
  height:auto;
}
.footer-column a,
.footer-column span,
.footer-column strong{
  white-space:nowrap;
}
.site-footer .footer-bottom{
  align-items:center;
}
@media(max-width:700px){
  .site-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:430px){
  .site-footer-grid{
    grid-template-columns:1fr;
  }
}


/* FINAL SHARED FOOTER FOR LANDING PAGE */
.site-footer{
  background:#081832;
  color:#b8c5d8;
  padding:38px 0 18px;
  border-top:0;
}
.site-footer .container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}
.site-footer-main{
  display:grid;
  grid-template-columns:2.4fr 1fr 1fr;
  gap:70px;
  align-items:start;
}
.site-footer .footer-brand img{
  width:205px;
  height:auto;
  display:block;
  filter:brightness(0) invert(1) grayscale(1);
}
.site-footer .footer-brand p{
  margin:13px 0 0;
  color:#91a0b7;
  font-size:11px;
}
.site-footer .footer-column h4{
  margin:0 0 15px;
  color:#fff;
  font-size:12px;
}
.site-footer .footer-column a,
.site-footer .footer-column span{
  display:block;
  margin:9px 0;
  color:#aab8cc;
  font-size:10px;
  white-space:nowrap;
}
.site-footer-bottom{
  border-top:1px solid rgba(255,255,255,.11);
  margin-top:34px;
  padding-top:17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-copy{
  display:flex;
  gap:17px;
  color:#8392aa;
  font-size:9px;
}
.footer-created{
  display:flex;
  align-items:center;
  gap:14px;
  color:#9eacc0;
  font-size:10px;
}
.footer-created strong{color:#fff}
.profile-links{
  display:flex;
  gap:8px;
}
.profile-links a{
  display:inline-flex;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:7px;
  color:#c3cfdf !important;
  font-size:9px;
}
.footer-disclaimer{
  border-top:1px solid rgba(255,255,255,.07);
  margin-top:14px;
  padding-top:12px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#687991;
  font-size:8px;
}
.footer-disclaimer span{white-space:nowrap}
.site-footer .footer-year{
  display:inline !important;
  margin:0 !important;
  font-size:inherit !important;
  color:inherit !important;
  white-space:nowrap !important;
}
@media(max-width:700px){
  .site-footer-main{grid-template-columns:1fr 1fr;gap:26px}
  .site-footer .footer-brand{grid-column:1/-1}
  .site-footer-bottom{align-items:flex-start;flex-direction:column}
  .footer-created{flex-wrap:wrap}
  .footer-disclaimer{flex-direction:column}
  .footer-disclaimer span{white-space:normal}
}
@media(max-width:430px){
  .site-footer-main{grid-template-columns:1fr}
  .site-footer .footer-brand{grid-column:auto}
}


/* Compact footer — landing page */
.site-footer{
  background:#fff;
  border-top:1px solid #e5eaf0;
  padding:25px 0;
  margin-top:0;
}
.site-footer .container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}
.site-footer-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:25px;
}
.footer-left,
.footer-center,
.footer-right{
  display:flex;
  align-items:center;
  min-width:0;
}
.footer-left{justify-content:flex-start;gap:12px}
.footer-name{color:#082448;font-size:16px;font-weight:800}
.footer-tagline{color:#8a98ab;font-size:10px}
.footer-center{justify-content:center;gap:12px;white-space:nowrap;color:#708099;font-size:9px}
.footer-center a{color:#53667e}
.footer-sep{color:#c1c9d4}
.footer-right{justify-content:flex-end;gap:14px;white-space:nowrap;color:#708099;font-size:9px}
.footer-right strong{color:#102949}
.footer-right a{color:#172f4f;font-weight:700}
.site-footer .footer-year{display:inline!important;margin:0!important;font:inherit!important;color:inherit!important}
@media(max-width:850px){
  .site-footer-inner{grid-template-columns:1fr;justify-items:center;gap:11px}
  .footer-left,.footer-center,.footer-right{justify-content:center;flex-wrap:wrap}
}


/* Larger landing-page Credora logo */
.intro-content .intro-logo{
  width:500px !important;
  max-width:88vw !important;
  height:auto;
}
@media(max-width:700px){
  .intro-content .intro-logo{
    width:390px !important;
    max-width:88vw !important;
  }
}


/* FINAL LANDING BRAND LOGO — reference-matched */
.intro-brand{
  display:flex;
  align-items:center;
}
.intro-brand img{
  width:280px !important;
  max-width:42vw !important;
  height:auto !important;
  transform:translateY(4px);
}
@media(max-width:700px){
  .intro-brand img{
    width:215px !important;
    max-width:65vw !important;
    transform:translateY(2px);
  }
}
