/* =========================================
   INDEX PAGE ONLY
   No header / footer styles here
   ========================================= */

body.public{
  background: #ffffff;
  color: rgba(11,13,18,0.92);
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 56vh;
  margin-top: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: #f6f7f9;
  border: 1px solid rgba(11,13,18,0.06);
}

.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 40px;
  max-width: 560px;
}

.kicker{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,13,18,0.62);
  margin-bottom: 10px;
}

.hero-panel{
  background: rgba(255,255,255,0.75);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(11,13,18,0.08);
  backdrop-filter: blur(10px);
}

.hero h1{
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}

.lead{
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(11,13,18,0.62);
}

.cta{
  margin-top: 22px;
  display: flex;
  gap: 18px;
}

.cta a{
  font-weight: 600;
  text-decoration: none;
}

/* ---------- TWO SIDES ---------- */
.two-sides{
  padding: 64px 0 12px;
  text-align: center;
}

.two-sides h2{
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0;
}

.sub{
  margin: 12px auto 0;
  max-width: 60ch;
  color: rgba(11,13,18,0.62);
}

.two-sides-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

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

.tile h3{
  margin: 0;
  font-size: 16px;
}

.tile p{
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,13,18,0.62);
}

.tile img{
  margin-top: 14px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(11,13,18,0.08);
}

/* ---------- IDEA ---------- */
.idea{
  padding: 72px 0 40px;
  max-width: 60ch;
  margin: auto;
  text-align: center;
}

.idea h2{
  font-size: 28px;
  margin: 0;
}

.idea p{
  margin-top: 14px;
  color: rgba(11,13,18,0.62);
}

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

.final-cta-label{
  font-size: 14px;
  color: rgba(11,13,18,0.62);
  margin-bottom: 12px;
}

.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-weight: 650;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(11,13,18,0.18);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .hero-content{ padding: 40px 24px; }
  .two-sides-grid{ grid-template-columns: 1fr; }
}
