
    /* HERO */
    .hero{
      position:relative;
      min-height:56vh;
      border-radius:var(--radius);
      overflow:hidden;
      margin-top:20px;
      border: 1px solid rgba(11,13,18,0.06);
      background: #f6f7f9;
    }
    .hero-bg{
      position:absolute;
      
      inset:0;
      background:url("/assets/img/hero1.png") center right / cover no-repeat;
    }
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.94) 0%,
    rgba(255,255,255,0.86) 32%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.18) 66%,
    rgba(255,255,255,0.00) 82%
  );
}
    .hero-content{
      position:relative;
      z-index:1;
      padding:56px 0;
      padding-left: 40px;
    }
    .kicker{
      font-size:12px;
      letter-spacing:0.12em;
      text-transform:uppercase;
      color:var(--muted);
      margin:0 0 10px;
    }
    h1{
      font-size:clamp(44px,5vw,74px);
      line-height:0.98;
      letter-spacing:-0.04em;
      margin:0;
    }
    .lead{
      margin-top:16px;
      max-width:54ch;
      font-size:16px;
      line-height:1.65;
      color:var(--muted);
    }
    .cta{
      margin-top:24px;
      display:flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }
    .cta a{
      font-weight:600;
      font-size:15px;
      text-decoration: none;
    }
    .cta a:hover{
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* TWO SIDES (minimal horizontal) */
    .two-sides{
      padding:56px 0 10px;
    }
    .two-sides h2{
      font-size:28px;
      letter-spacing:-0.03em;
      margin:0;
      text-align:center;
    }
    .two-sides .sub{
      margin:12px auto 0;
      color: var(--muted);
      text-align:center;
      max-width: 70ch;
      line-height:1.6;
      font-size:14px;
    }
    .two-sides-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 22px;
    }
    .tile{
      border: 1px solid rgba(11,13,18,0.08);
      border-radius: 20px;
      padding: 18px;
      background: rgba(255,255,255,0.70);
    }
    .tile .label{
      font-weight: 650;
      letter-spacing: -0.01em;
      margin: 0;
    }
    .tile p{
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }
    .thumb{
      height: 120px;
      border-radius: 14px;
      margin-top: 14px;
      border: 1px dashed rgba(11,13,18,0.18);
      background: linear-gradient(180deg, rgba(11,13,18,0.03), rgba(11,13,18,0.00));
      display:flex;
      align-items:center;
      justify-content:center;
      color: var(--muted2);
      font-size: 13px;
      text-align:center;
      padding: 10px;
    }

    /* IDEA STRIP */
    .idea{
      padding:72px 0 40px;
      text-align:center;
      max-width:60ch;
      margin:auto;
    }
    .idea h2{
      font-size:28px;
      letter-spacing:-0.03em;
      margin:0;
    }
    .idea p{
      margin-top:14px;
      color:var(--muted);
      line-height:1.6;
    }


    /* FINAL CTA */
.final-cta{
  margin: 72px 0 40px;
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(11,13,18,0.06);
}

.final-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;

  background: #5a5f66;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(11,13,18,0.18);
}

.final-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(11,13,18,0.22);
}


    .hero-panel{
  display:inline-block;
  max-width: 560px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,13,18,0.06);
  backdrop-filter: blur(10px);
}

.thumb-img{
  display:block;
  width:100%;
  margin-top:14px;
  border-radius:16px;
  border:1px solid rgba(11,13,18,0.08);
  background:#fff;
  box-shadow: 0 12px 30px rgba(11,13,18,0.08);
}

.two-sides-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  align-items: start; /* critical: prevents weird stretching */
}

.tile{
  border: 1px solid rgba(11,13,18,0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 40px rgba(11,13,18,0.06);
}

.tile-title{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.tile-copy{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  max-width: 52ch;
}

/* The big fix: image is cropped to a consistent height */
.tile-media{
  display:block;
  width:100%;
  height: 220px;           /* <- choose 200–260px */
  object-fit: cover;       /* <- crops instead of stretching */
  object-position: center; /* tweak if needed */
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(11,13,18,0.08);
  background: #fff;
}
