
:root{
  --grato-yellow:#FFC400;
  --text:#111111;
  --stroke: rgba(17,17,17,0.65);
}

html,body{height:100%;}
body{color:var(--text); background:#fff;}

.shadow-soft{ box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.chip-shadow{ box-shadow: 0 14px 28px rgba(0,0,0,0.18); }


.btn-primary{
  background: var(--grato-yellow);
  color:#111;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-primary:hover{
  background: transparent;
  border-color: var(--grato-yellow);
}
.btn-primary:active{ transform: translateY(1px); }


.hero-wrap{ overflow: visible; }
.hero-person{
  height: 112%;
  max-height: none;
  z-index: 10;
}

@media (min-width: 1280px){
  .hero-person{ height: 118%; }
}
@media (min-width: 1536px){
  .hero-person{ height: 120%; }
}


.aud-card{
  transition: transform .18s ease, box-shadow .18s ease;
}
.aud-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.16);
}
.aud-caption{
  transition: transform .18s ease;
  transform-origin: center;
}
.aud-card:hover .aud-caption{
  transform: scale(1.04);
}

/* label under audience: NOT a button */
.aud-label{
  position: relative;
  display: inline-block;
  font-weight: 900;
  color: #111;
  font-size: 22px;
  padding-bottom: 10px;
}
.aud-label::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width: 180px;
  height: 6px;
  background: var(--grato-yellow);
  border-radius: 9999px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}
@media (min-width: 1280px){
  .aud-label{ font-size: 28px; }
  .aud-label::after{ width: 260px; height: 7px; }
}


.road-line{
  height:2px;
  background:var(--stroke);
  width:min(980px, 88%);
  margin: 22px auto;
  border-radius:9999px;
}


.road-wrap{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.road-pill{
  border: 2px solid rgba(17,17,17,0.55);
  background:#fff;
  border-radius: 9999px;
  min-height: 140px;
  padding: 30px 44px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.road-right{ margin-left:auto; }

.road-num{
  color: var(--grato-yellow);
  font-weight: 900;
  font-size: 86px;
  line-height: 1;
  width: 140px;
  flex: 0 0 auto;
}
.road-num-right{ text-align:right; }

.road-text{
  font-size: 23px;
  line-height: 1.35;
  color:#111;
  max-width: 560px;
  transition: font-size .18s ease;
}
.road-text-center{
  text-align:center;
  max-width: 640px;
  margin: 0 auto;
}
.road-text-bold{ font-weight: 900; }


.mstep{
  border: 2px solid rgba(17,17,17,0.22);
  border-radius: 26px;
  padding: 16px 16px;
  background:#fff;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mnum{
  color: var(--grato-yellow);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  width: 54px;
  flex: 0 0 auto;
}
.mtext{
  font-size: 16px;
  line-height: 1.45;
  color:#111;
  transition: font-size .18s ease;
}


.step-anim{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s ease, transform .9s ease;
  transition-delay: var(--delay, 0ms);
}
.step-anim.is-visible{
  opacity: 1;
  transform: translateY(0);
}


@media (hover:hover){
  .road-pill.step-anim.is-visible:hover{
    transform: translateY(-6px);
    border-color: rgba(17,17,17,0.78);
    box-shadow:
      0 0 0 6px rgba(255,196,0,0.18),
      0 22px 60px rgba(0,0,0,0.10);
  }


  .mstep.step-anim.is-visible:hover{
    transform: translateY(-4px);
    border-color: rgba(17,17,17,0.35);
    box-shadow:
      0 0 0 4px rgba(255,196,0,0.15),
      0 18px 40px rgba(0,0,0,0.08);
  }
  .mstep.step-anim.is-visible:hover .mtext{
    font-size: 17px;
  }
}


.contact-frame{
  border-top: 6px solid var(--grato-yellow);
  border-left: 6px solid var(--grato-yellow);
  border-right: 6px solid var(--grato-yellow);
  border-bottom: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
