.hero-section {
    min-height: calc(100vh - 100px);
    background:url('/content/dam/cohesity/live/catalyst-2027/hero-bg-image.png') center center/cover no-repeat;
    display:flex;
    align-items:center;
}
.hero-section .hero-grid {
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
    gap:20px;
}
.hero-section .hero-grid  .hero-content {
    max-width:520px;
}
.hero-section .hero-grid  .hero-content .event-logo {
    margin-bottom:40px;
}
.hero-section .hero-grid  .hero-content .event-logo img{
    width:100%;
    max-width:580px;
    display:block;
}
.hero-section .hero-grid  .hero-content .broadcast{
    color:#000;
    margin-bottom:15px;
}
.hero-section .hero-grid  .hero-content .event-dates{
    font-size:22px;
    font-family: 400;
    line-height:1.4;
    color:#000;
    margin-bottom:35px;
}
.hero-section .hero-grid  .hero-content .event-dates strong {
    font-family: 500;
}
.hero-section .hero-grid  .hero-content .cta-button{
    background:#ff4be7;
}
.hero-section .hero-grid  .hero-image{
    text-align:right;
}
.hero-section .hero-grid  .hero-image img{
    width:100%;
    max-width:850px;
    display:block;
    margin-left:auto;
}

@media (min-width:1200px) and (max-width:1799px) {
    .hero-section .section__container {
        position: static;
    }
    .hero-section .hero-grid .hero-image {
        position: absolute;
        right: 0;
    }
}

@media (max-width:991px){
    .hero-section .hero-grid{
        grid-template-columns:1fr;
    }
    .hero-section .hero-grid  .hero-image{
        text-align:center;
        margin-top:40px;
    }
    .hero-section .hero-grid  .hero-image img{
        margin:auto;
    }
    .hero-section .hero-grid  .hero-content .event-logo img{
        max-width:450px;
    }
}

@media (max-width:767px){
    .hero-section .hero-grid  .hero-content .event-dates{
        font-size:18px;
    }
    .hero-section .hero-grid  .hero-content .cta-button{
        width:100%;
        text-align:center;
    }
}



/** Marketo Form Signup **/

.catalyst-signup {
  background: #000;
  padding: 32px 0;

  .section__container {
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .catalyst-logo {
    flex-shrink: 0;

    img {
      display: block;
      max-width: 180px;
      width: 100%;
      height: auto;
    }
  }

  .divider {
    width: 2px;
    height: 60px;
    background: #c400ff;
    flex-shrink: 0;
  }

  .signup-copy {
    margin: 0;
    color: #fff;
    white-space: nowrap;
  }

  .marketo-form-wrap {
    margin-left: 0;
    /* flex-shrink: 0; */
  }

  .marketo-form__container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible;
  }

  .marketo-form__outer.form-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .thanku-explore {
    display: none;
  }

  #mktoForm_4492 {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0.3px;

    .mktoFormRow {
      margin: 0 !important;
      width: auto !important;
      clear: none !important;
    }

    .mktoFormCol {
      margin: 0 !important;
      width: auto !important;
      min-height: auto !important;
      float: none !important;
    }

    .mktoFieldWrap {
      margin: 0 !important;
      width: auto !important;
    }

    .mktoLabel,
    .mktoGutter,
    .mktoOffset,
    .mktoInstruction,
    .mktoClear,
    .mktoCaptchaDisclaimer {
      display: none !important;
    }

    .mktoHtmlText {
      display: none !important;
    }

    /* Email field */
    input[type="email"],
    .mktoField {
      width: 350px !important;
      height: 48px !important;
      background: #f1f1f1 !important;
      border: none !important;
      border-radius: 0 !important;
      padding: 0 16px !important;
      font-size: 16px !important;
      color: #333 !important;
      box-sizing: border-box !important;
    }

    input::placeholder {
      color: #666;
      opacity: 1;
    }

    /* Button row */
    .mktoButtonRow {
      margin: 0 !important;
      width: auto !important;
    }

    .mktoButtonWrap {
      margin: 0 !important;
      display: block !important;
    }

    .mktoButton {
      width: 120px !important;
      height: 48px !important;
      background: #00f77f !important;
      background-image: none !important;
      border: none !important;
      border-radius: 4px !important;
      color: #000 !important;
      font-size: 15px !important;
      font-weight: 700 !important;
      text-transform: uppercase;
      box-shadow: none !important;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .mktoButton:hover {
      opacity: 0.9;
    }
  }
  .marketo-form__container .thanku-explore { color: #fff; margin: 0; }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .catalyst-signup {
        #mktoForm_4492 {
            input[type="email"],
            .mktoField {
                width: 290px !important;
            }
        }
    }
}

@media (max-width: 1199px) {
  .catalyst-signup {
    .section__container {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }

    .signup-copy {
      white-space: normal;
    }

    .marketo-form-wrap {
      width: 100%;
      margin-left: 0;
      display: flex;
      justify-content: center;
    }
  }
}

@media (max-width: 767px) {
  .catalyst-signup {
    padding: 24px 0;

    .section__container {
      flex-direction: column;
      gap: 20px;
    }

    .divider {
      display: none;
    }

    .signup-copy {
      font-size: 20px;
      text-align: center;
    }

    .marketo-form-wrap {
      width: 100%;
      display: block;
    }

    #mktoForm_4492 {
      width: 100% !important;
      display: block;
      gap: 12px;

      .mktoFormRow,
      .mktoFormCol,
      .mktoFieldWrap {
        width: 100% !important;
      }

      input[type="email"],
      .mktoField {
        width: 100% !important;
      }

      .mktoButtonRow,
      .mktoButtonWrap,
      .mktoButton {
        width: 100% !important;
      }
    }
  }
}