/* =========================================================
   NOCHARTE DAYLIGHT — HOME PAGE
========================================================= */

.daylight-home-page{
  background:
    radial-gradient(circle at 10% 8%, rgba(0,217,255,.10), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(176,0,255,.08), transparent 34%),
    #f6f7fb;
}

.dl-eyebrow{
  margin:0 0 14px;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(8,11,18,.5);
}

/* ================= HERO ================= */

.dl-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  isolation:isolate;
  overflow:hidden;
  background:#eef3f8;
}

.dl-hero-bg{
  position:absolute;
  inset:-40px;
  z-index:0;
  background-size:cover;
  background-position:center 38%;
  filter:blur(22px) saturate(1.25);
  transform:scale(1.08);
  opacity:.55;
}

.dl-hero-slider{
  position:absolute;
  inset:0;
  z-index:1;
  background:#eef3f8;
}

.dl-hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 38%;
  opacity:0;
  transform:scale(1.01);
  filter:brightness(.97) saturate(1.05) contrast(1.02);
  transition:opacity 1000ms ease;
}

.dl-hero-img.is-on{
  opacity:1;
}

.dl-hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to top, rgba(255,255,255,.97), rgba(255,255,255,.66) 42%, rgba(255,255,255,.1) 76%, rgba(255,255,255,0)),
    radial-gradient(circle at 88% 12%, rgba(0,217,255,.22), transparent 45%),
    radial-gradient(circle at 8% 8%, rgba(176,0,255,.16), transparent 45%);
  pointer-events:none;
}

.dl-hero-content{
  position:relative;
  z-index:5;
  width:100%;
  padding:0 44px 74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.dl-hero-title{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}

.dl-hero-title span{
  display:block;
  font-weight:900;
  text-transform:uppercase;
}

.dl-hero-title-main{
  font-size:clamp(48px, 8vw, 118px);
  line-height:.9;
  letter-spacing:-.04em;
  color:#0a0d12;
}

.dl-hero-title-accent{
  font-size:clamp(40px, 6.6vw, 96px);
  line-height:.95;
  letter-spacing:-.03em;
  background:linear-gradient(90deg, #00d9ff 0%, #3aa7ff 45%, #b000ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.dl-hero-sub{
  max-width:600px;
  margin:22px 0 0;
  font-size:clamp(15px, 1.2vw, 19px);
  line-height:1.5;
  color:rgba(8,11,18,.62);
}

.dl-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:32px;
}

.dl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  height:54px;
  padding:0 30px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  text-decoration:none;
  transition:transform .22s ease, box-shadow .22s ease;
}

.dl-btn--primary{
  color:#fff;
  background:linear-gradient(90deg, #00d9ff, #3aa7ff, #b000ff);
  box-shadow:0 16px 40px rgba(0,0,0,.16);
}

.dl-btn--primary:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 48px rgba(0,0,0,.2);
}

.dl-btn--ghost{
  color:#0a0d12;
  background:#fff;
  border:1px solid rgba(8,11,18,.14);
}

.dl-btn--ghost:hover{
  transform:translateY(-3px);
  border-color:rgba(8,11,18,.28);
}

.dl-scroll{
  position:absolute;
  left:50%;
  bottom:30px;
  z-index:5;
  transform:translateX(-50%);
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(8,11,18,.5);
  text-decoration:none;
  font-size:10px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.dl-scroll span{
  width:1px;
  height:30px;
  display:block;
  background:linear-gradient(to bottom, rgba(8,11,18,0), rgba(8,11,18,.55));
  animation:dlScroll 1.8s ease-in-out infinite;
}

@keyframes dlScroll{
  0%{ transform:scaleY(.35); opacity:.4; }
  50%{ transform:scaleY(1); opacity:1; }
  100%{ transform:scaleY(.35); opacity:.4; }
}

/* ================= SHARED SECTION LAYOUT ================= */

.dl-wrap{
  width:min(1240px, 92vw);
  margin:0 auto;
}

.dl-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:30px;
}

.dl-section-head h2{
  margin:0;
  font-size:clamp(28px, 3.2vw, 46px);
  line-height:1.05;
  font-weight:900;
  color:#080b12;
  letter-spacing:-.01em;
}

.dl-see-all{
  flex:0 0 auto;
  color:#0a0d12;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
  transition:border-color .2s ease;
}

.dl-see-all:hover{
  border-color:#b000ff;
}

/* ================= LATEST COVERAGE ================= */

.dl-coverage{
  padding:90px 0 20px;
}

.dl-coverage-strip{
  display:block;
}

.dl-coverage-card{
  position:relative;
  display:block;
  aspect-ratio:21 / 9;
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 18px 44px rgba(0,0,0,.1);
}

.dl-coverage-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

.dl-coverage-card:hover img{
  transform:scale(1.05);
}

.dl-coverage-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.05) 55%);
  pointer-events:none;
}

.dl-coverage-label{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:30px;
  color:#fff;
}

.dl-coverage-name{
  display:block;
  font-size:clamp(20px, 2.6vw, 30px);
  font-weight:900;
  text-shadow:0 6px 18px rgba(0,0,0,.4);
}

.dl-coverage-meta{
  display:block;
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  color:rgba(255,255,255,.78);
}


/* ================= APPROACH ================= */

.dl-approach{
  padding:90px 0;
}

.dl-approach-copy{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}

.dl-approach-copy h2{
  margin:0;
  font-size:clamp(30px, 3.6vw, 50px);
  line-height:1.05;
  font-weight:900;
  color:#080b12;
  letter-spacing:-.01em;
}

.dl-approach-copy p{
  margin:20px auto 0;
  max-width:520px;
  font-size:16px;
  line-height:1.65;
  color:rgba(8,11,18,.62);
}

.dl-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:26px;
}

.dl-pill{
  padding:9px 18px;
  border-radius:999px;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.04em;
  color:#0a0d12;
  background:#fff;
  border:1px solid rgba(8,11,18,.12);
}

/* ================= CTA BAND ================= */

.dl-cta-band{
  margin:20px auto 90px;
  padding:64px 44px;
  border-radius:32px;
  text-align:center;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,217,255,.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(176,0,255,.26), transparent 45%),
    linear-gradient(135deg, #0c1018, #0a0d12);
}

.dl-cta-band h2{
  margin:0;
  font-size:clamp(28px, 3.4vw, 44px);
  font-weight:900;
  color:#fff;
  letter-spacing:-.01em;
}

.dl-cta-band p{
  margin:14px 0 0;
  font-size:15px;
  color:rgba(255,255,255,.68);
}

.dl-cta-band .dl-btn--primary{
  margin-top:28px;
}

/* ================= FOOTER ================= */

.dl-footer{
  border-top:1px solid rgba(8,11,18,.08);
  padding:44px 0;
}

.dl-footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.dl-footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.dl-footer-brand img{
  height:34px;
  width:auto;
}

.dl-footer-tagline{
  margin:0;
  font-size:13px;
  color:rgba(8,11,18,.5);
}

.dl-footer-nav{
  display:flex;
  gap:26px;
}

.dl-footer-nav a{
  color:rgba(8,11,18,.68);
  font-weight:800;
  font-size:13.5px;
  text-decoration:none;
}

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

.dl-footer-copy{
  margin:0;
  font-size:12px;
  color:rgba(8,11,18,.42);
}

/* ================= MOBILE ================= */

@media (max-width:900px){
  .dl-hero{
    min-height:78vh;
  }

  .dl-hero-content{
    padding:0 22px 44px;
  }

  .dl-hero-actions{
    flex-direction:column;
    width:100%;
  }

  .dl-btn{
    width:100%;
  }

  .dl-scroll{
    display:none;
  }

  .dl-wrap{
    width:100%;
    padding:0 20px;
  }

  .dl-coverage{
    padding:60px 0 10px;
  }

  .dl-coverage-card{
    aspect-ratio:4 / 3;
  }

  .dl-approach{
    padding:60px 0;
  }

  .dl-cta-band{
    margin:10px 20px 60px;
    padding:48px 26px;
    border-radius:26px;
  }

  .dl-footer{
    padding:36px 0 100px;
  }

  .dl-footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .dl-footer-nav{
    gap:20px;
  }
}
