
:root{
  --wrap: 1180px;
  --pad: clamp(16px, 4vw, 44px);

  --ink: #111827;
  --muted: #6b7280;

  --paper: #ffffff;
  --paper-soft: #f6f7fb;

  --shadow: 0 22px 55px rgba(16, 24, 40, .10);
  --shadow-soft: 0 16px 40px rgba(16, 24, 40, .08);

  --radius: 18px;
}

.dc-landing{
  background: var(--paper);
  color: var(--ink);
}

.dc-landing__wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px) var(--pad) clamp(40px, 7vw, 90px);
}

/* ============================
   HERO
   ============================ */
.dc-hero{
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  position: relative;
}

/* subtle paint blob behind the headline area */
.dc-hero__left{
  position: relative;
  padding: 10px 0;
}
.dc-hero__left::before{
  content: "";
  position: absolute;
  left: -14%;
  top: -10%;
  width: min(520px, 68%);
  height: 280px;
  background: radial-gradient(circle at 30% 40%,
      rgba(0,0,0,.06) 0%,
      rgba(0,0,0,.03) 45%,
      rgba(0,0,0,0) 70%);
  border-radius: 42% 58% 55% 45% / 40% 45% 55% 60%;
  filter: blur(1px);
  z-index: -1;
}

.dc-hero__title{
  margin: 0 0 16px;
  font-family: Tahoma, Geneva, Tahoma, Verdana, sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.23;
  letter-spacing: -.4px;
}

.dc-hero__sub{
  margin: 0 0 18px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-family: Roboto, Geneva, Verdana, sans-serif;
}

/* ============================
   BUTTONS
   ============================ */
.dc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  user-select: none;
  font-family: Roboto, Geneva, Verdana, sans-serif;
}
.dc-btn:active{ transform: translateY(1px); }

.dc-btn--dark{
  background: #0b0f16;
  color: #fff;
}
.dc-btn--dark:hover{
  background: #111827;
}

.dc-btn--outline{
  background: transparent;
  color: #111827;
  border: 2px solid #111827;
}
.dc-btn--outline:hover{
  background: #111827;
  color: #fff;
}

/* ============================
   HERO RIGHT (pill image + dots)
   ============================ */
.dc-hero__right{
  position: relative;
  display: grid;
  place-items: center;
  /* min-height: 420px; */
}


/* pill collage image container */
.dc-pillCluster{
  width: min(650px, 90%);
  height: min(520px, 90vw); 
  border-radius: 0;
  overflow: hidden; 
  position: relative;
}

/* make the image fill the box */
.dc-pillCluster img{
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: center;
  display: block;
}

/* ============================
   PROGRAMS
   ============================ */
.dc-programs{
  margin-top: clamp(34px, 10vw, 200px);
  text-align: center;
}

.dc-programs__title{
  margin: 0;
  /* font-family: Georgia, "Times New Roman", Times, serif; */
  font-family: Roboto, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
}

.dc-intro__text{
  margin: 1.5em 1.8em 1.5em;
  color: var(--muted);
  font-size: 1.12em;
  line-height: 1.95;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  text-align: left;
}


/* cards row */
.dc-cards{
  margin-top: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(14px, 2.4vw, 26px);
  align-items: stretch;
}

/* card */
.dc-card{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 18px;
  text-align: center;
  border: 1px solid black;
}

.dc-card__img{
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e5e7eb;
  margin-bottom: 12px;
  border: 1px solid black;
}
.dc-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dc-card__title{
  margin: 6px 0 8px;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: 1.6em;
}

.dc-card__text{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.93em;
  line-height: 1.85;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  text-align: left;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 980px){
  .dc-hero{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .dc-hero__right{
    order: -1;
    min-height: 260px;
  }
  .dc-hero__sub{
    max-width: 58ch;
  }

  .dc-cards{
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 560px){
  .dc-cards{
    grid-template-columns: 1fr;
  }
  .dc-hero__title{
    font-size: clamp(34px, 9vw, 44px);
  }
}