.gated-content-page {
  background: #05070e;
  color: #fff;
}

.gated-content-page .design-container {
  width: min(1600px, calc(100% - 104px));
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}

.gated-content-page h1,
.gated-content-page h2,
.gated-content-page h3 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-weight: 400;
  text-transform: uppercase;
}

.gated-content-page em {
  color: #f06015;
  font-style: normal;
  -webkit-text-fill-color: #f06015;
}

.gated-content-page p {
  color: rgba(255,255,255,.76);
}

.gated-content-page .eyebrow {
  color: #fff;
  font-size: 20px;
}

.gated-content-hero {
  min-height: 820px;
  padding: 180px 0 110px;
  background: var(--gated-hero-bg) center top / cover no-repeat #05070e;
}

.gated-content-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 86px;
  align-items: start;
}

.gated-content-hero__copy {
  max-width: 840px;
}

.gated-content-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(44px, 4.7vw, 76px);
  line-height: 1.08;
  letter-spacing: .045em;
}

.gated-content-hero__copy > p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
}

.gated-content-checklist {
  display: grid;
  gap: 14px;
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
}

.gated-content-checklist li {
  position: relative;
  min-height: 28px;
  padding-left: 42px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.gated-content-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #62cac2;
  box-shadow: 0 0 0 8px rgba(98,202,194,.12);
}

.gated-content-checklist li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 8px;
  height: 13px;
  border: solid #06111f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gated-content-resource-card {
  width: min(460px, 100%);
  aspect-ratio: 1.32;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(98,202,194,.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15,31,50,.9), rgba(9,21,37,.72));
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.gated-content-resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gated-content-form-card {
  padding: 44px;
  border: 1px solid rgba(98,202,194,.78);
  border-radius: 16px;
  background: rgba(6,17,31,.9);
  box-shadow: 0 30px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.05);
}

.gated-content-form-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.16;
}

.gated-content-form-card > p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
}

.gated-content-form .gform_wrapper {
  margin: 0;
}

.gated-content-form .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px 18px;
}

.gated-content-form .gfield {
  grid-column: span 1 !important;
  margin: 0 !important;
}

.gated-content-form .gfield--type-consent,
.gated-content-form .gfield--type-checkbox,
.gated-content-form .gfield--type-html,
.gated-content-form .gfield_html {
  grid-column: 1 / -1 !important;
}

.gated-content-form .gform-field-label,
.gated-content-form .gfield_label {
  display: block !important;
  margin: 0 0 8px !important;
  color: #fff !important;
  font-family: var(--font-primary) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.gated-content-form .gfield_required_text {
  display: none !important;
}

.gform_legacy_markup_wrapper .gfield_required {
  color: #fff;
  margin-left: 1px;
  font-size: 18px;
}

.gated-content-form input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]),
.gated-content-form select,
.gated-content-form textarea {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #06111f !important;
  font-family: var(--font-primary) !important;
  font-size: 15px !important;
}

.gated-content-form input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]),
.gated-content-form select {
  padding: 0 15px !important;
}

.gated-content-form textarea {
  min-height: 112px !important;
  padding: 13px 15px !important;
}

.gated-content-form .gfield_checkbox,
.gated-content-form .ginput_container_consent {
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.gated-content-form .gfield--type-consent {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr) !important;
  gap: 0 10px !important;
  align-items: start !important;
}

.gated-content-form .gfield--type-consent > .gfield_label {
  display: none !important;
}

.gated-content-form .gfield--type-consent .ginput_container_consent {
  display: contents !important;
}

.gated-content-form .gfield--type-consent .gfield_consent_label {
  display: none !important;
}

.gated-content-form .gfield_description.gfield_consent_description,
.gform_legacy_markup_wrapper .field_description_below .gfield_consent_description,
.gform_legacy_markup_wrapper .gfield_consent_description {
  grid-column: 2 !important;
  width: auto !important;
  max-height: 240px !important;
  overflow-y: visible !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  box-shadow: none !important;
}

.gated-content-form .gfield--type-consent .validation_message,
.gated-content-form .gfield--type-consent .gfield_validation_message {
  grid-column: 2 !important;
  width: auto !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.gated-content-form input[type="checkbox"] {
  grid-column: 1 !important;
  width: 16px !important;
  height: 16px !important;
  margin: 3px 0 0 !important;
  accent-color: #62cac2;
}

.gated-content-form .gform_footer,
.gated-content-form .gform_page_footer {
  margin: 26px 0 0 !important;
  padding: 0 !important;
}

.gated-content-form .btn.btn-cyan,
.gated-content-form button[type="submit"].btn-cyan {
  min-height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 7px 7px 7px 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: #62cac2 !important;
  font-family: var(--font-primary) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.gated-content-form .btn.btn-cyan .btn-icon,
.gated-content-form button[type="submit"].btn-cyan .btn-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #62cac2;
  background: #fff;
}

.gated-content-form .validation_message,
.gated-content-form .gfield_validation_message,
.gated-content-form .gform_submission_error {
  margin: 7px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #e53f08 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.gated-content-form .gform_validation_errors,
.gated-content-form .validation_error {
  display: none !important;
}

.gated-content-overview {
  padding: 110px 0;
  background: var(--gated-overview-bg) center top / cover no-repeat #071426;
}

.gated-content-overview__grid {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  gap: 84px;
  align-items: center;
}

.gated-content-overview__media {
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(98,202,194,.28);
  border-radius: 8px;
  background: rgba(15,31,50,.72);
}

.gated-content-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gated-content-overview h2,
.gated-content-section-heading h2,
.gated-content-cta h2 {
  margin: 18px 0 22px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.12;
  letter-spacing: .04em;
}

.gated-content-overview__copy > p {
  max-width: 760px;
  margin: 0 0 38px;
  font-size: 16px;
  line-height: 1.78;
}

.gated-content-steps {
  display: grid;
  gap: 18px;
}

.gated-content-steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 4px 22px;
  padding: 24px;
  border: 1px solid rgba(98,202,194,.28);
  border-radius: 8px;
  background: rgba(15,31,50,.66);
}

.gated-content-steps span {
  grid-row: span 2;
  color: #62cac2;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.gated-content-steps h3,
.gated-content-benefit-grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.gated-content-steps p,
.gated-content-benefit-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.gated-content-benefits {
  padding: 112px 0;
  background: var(--gated-benefits-bg) center top / cover no-repeat #05070e;
}

.gated-content-section-heading {
  max-width: 940px;
  margin: 0 auto 54px;
  text-align: center;
}

.gated-content-section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}

.gated-content-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gated-content-benefit-grid article {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(98,202,194,.3);
  border-radius: 8px;
  background: rgba(15,31,50,.76);
}

.gated-content-benefit-grid span {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 28px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, #06111f 48% 52%, transparent 52%),
    radial-gradient(circle, #62cac2 0 58%, rgba(98,202,194,.18) 60%);
  box-shadow: 0 0 0 8px rgba(98,202,194,.1);
}

.gated-content-benefit-grid h3 {
  margin-bottom: 18px;
}

.gated-content-cta {
  padding: 92px 0 110px;
  background: linear-gradient(135deg, #071426 0%, #0b2038 50%, #06111f 100%);
}

.gated-content-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 48px;
  align-items: center;
  padding: 44px 52px;
  border: 1px solid rgba(98,202,194,.34);
  border-radius: 8px;
  background: rgba(5,7,14,.5);
}

.gated-content-cta h2 {
  margin: 0;
}

.gated-content-cta p {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.gated-content-cta .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

@media (max-width: 1199.98px) {
  .gated-content-hero__grid,
  .gated-content-overview__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .gated-content-form-card {
    max-width: 720px;
  }

  .gated-content-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .gated-content-page .design-container {
    width: calc(100% - 32px);
  }

  .gated-content-hero {
    min-height: auto;
    padding: 192px 0 72px;
  }

  .gated-content-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .gated-content-hero__copy > p,
  .gated-content-overview__copy > p,
  .gated-content-section-heading p:not(.eyebrow),
  .gated-content-cta p {
    font-size: 15px;
  }

  .gated-content-form-card {
    padding: 28px;
    border-radius: 12px;
  }

  .gated-content-form-card h2 {
    font-size: 28px;
  }

  .gated-content-form .gform_fields,
  .gated-content-benefit-grid {
    grid-template-columns: 1fr !important;
  }

  .gated-content-form .gfield {
    grid-column: 1 / -1 !important;
  }

  .gated-content-overview,
  .gated-content-benefits {
    padding: 72px 0;
  }

  .gated-content-overview__media {
    min-height: 300px;
  }

  .gated-content-steps article {
    grid-template-columns: 1fr;
  }

  .gated-content-steps span {
    grid-row: auto;
  }

  .gated-content-cta {
    padding: 72px 0;
  }

  .gated-content-cta__inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .gated-content-cta p,
  .gated-content-cta .btn {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 390px) {
  .gated-content-hero h1 {
    font-size: 35px;
  }

  .gated-content-form-card {
    padding: 24px;
  }
}

/* Figma whitepaper landing page alignment. */
.gated-content-hero {
  min-height: 920px;
  padding: 170px 0 92px;
  background:
    radial-gradient(circle at 18% 58%, rgba(24,80,147,.74) 0%, rgba(24,80,147,.28) 24%, transparent 46%),
    radial-gradient(circle at 88% 18%, rgba(47,139,235,.55) 0%, transparent 36%),
    linear-gradient(180deg, rgba(7,20,38,.88) 0%, rgba(5,11,21,.96) 100%),
    var(--gated-hero-bg) center top / cover no-repeat #071426;
}

.gated-content-hero__grid {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.12fr);
  gap: 126px;
  align-items: center;
}

.gated-content-hero .gated-content-resource-card {
  width: min(520px, 100%);
  margin: 90px auto 0;
  aspect-ratio: 1.42;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gated-content-hero .gated-content-resource-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.34));
}

.gated-content-hero .eyebrow {
  color: #ffffff;
}

.gated-content-hero__copy {
  max-width: 780px;
}

.gated-content-hero h1 {
  max-width: 100%;
  margin: 20px 0 24px;
  font-size: 75px;
  line-height: 1.13;
  letter-spacing: 1.2px;
}

.gated-content-rich-text p,
.gated-content-hero__copy > p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.78;
}

.gated-content-checklist {
  gap: 6px;
  margin: -12px 0 2px;
  padding-left: 18px;
  list-style: disc;
}

.gated-content-checklist li {
  min-height: 0;
  padding-left: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
}

.gated-content-checklist li::before,
.gated-content-checklist li::after {
  display: none;
}

.gated-content-overview {
  padding: 112px 40px 122px;
  background:
    linear-gradient(180deg, rgba(7,20,38,.94), rgba(7,20,38,.82)),
    url("../images/service-page/blog-contact-bg.png") center bottom / cover no-repeat #071426;
}

.gated-content-overview__grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 570px);
  gap: 118px;
  align-items: start;
}

.gated-content-overview__copy {
  max-width: 720px;
}

.gated-content-overview h2 {
  max-width: 700px;
  margin: 18px 0 22px;
  font-size: clamp(35px, 3vw, 48px);
  line-height: 1.2;
  letter-spacing: .05em;
}

.gated-content-overview .gated-content-rich-text p {
  margin-bottom: 14px;
}

.gated-content-steps {
  counter-reset: gated-step;
  display: block;
  max-width: 700px;
}

.gated-content-steps article {
  counter-increment: gated-step;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gated-content-steps article + article {
  margin-top: 7px;
}

.gated-content-steps span {
  display: none;
}

.gated-content-steps h3 {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #DADADA;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.gated-content-steps h3::before {
  content: counter(gated-step, upper-roman) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.86);
}

.gated-content-step-description {
  margin: 3px 0 0;
  padding-left: 48px;
  color: #DADADA;
  font-size: 18px;
  line-height: 1.7;
}

.gated-content-step-description ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.gated-content-step-description ul ul {
  margin-top: 2px;
  padding-left: 18px;
}

.gated-content-step-description li {
  margin: 0;
  padding-left: 2px;
}

.gated-content-form-card {
  padding: 34px 36px 38px;
  border: 1px solid rgba(98,202,194,.78);
  border-radius: 10px;
  background: rgba(6,17,31,.78);
  box-shadow: none;
}

.gated-content-form-card h2 {
  margin: 0 0 22px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0;
  text-transform: capitalize;
}

#gated-content-form h2 {
  max-width: 700px;
  margin: 0 0 22px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.gated-content-form .gform_fields {
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.gated-content-form .gfield {
  grid-column: 1 / -1 !important;
}

.gated-content-form .gform-field-label,
.gated-content-form .gfield_label {
  margin-bottom: 5px !important;
  font-size: 13px !important;
}

.gated-content-form input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]),
.gated-content-form select,
.gated-content-form textarea {
  height: 39px !important;
  min-height: 39px !important;
  border-radius: 5px !important;
}

.gated-content-recaptcha-placeholder {
  width: 166px;
  height: 44px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 3px 8px;
  align-items: center;
  padding: 7px;
  border: 1px solid #d6d6d6;
  background: #f7f7f7;
  color: #111;
}

.gated-content-recaptcha-placeholder span {
  grid-row: span 2;
  width: 16px;
  height: 16px;
  border: 1px solid #8d8d8d;
  background: #fff;
}

.gated-content-recaptcha-placeholder small {
  color: #111;
  font-size: 9px;
  line-height: 1;
}

.gated-content-recaptcha-placeholder strong {
  color: #6d6d6d;
  font-size: 7px;
  line-height: 1;
}

.gated-content-form .gfield_checkbox,
.gated-content-form .ginput_container_consent {
  color: rgba(255,255,255,.74) !important;
  font-size: 13px !important;
}

label#label_6_7_1 {
  font-size: 18px;
  font-weight: 400 !important;
  font-family: 'DM Sans';
}

.gated-content-form .btn.btn-cyan,
.gated-content-form button[type="submit"].btn-cyan {
  min-height: 54px !important;
  padding-left: 24px !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
}

.gated-content-hero .gated-content-resource-card {
  width: 680px;
  margin: 90px auto 0;
  aspect-ratio: 1.42;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1440px) {
  .gated-content-hero .gated-content-resource-card {
    width: 580px;
    margin: 90px auto 0;
    aspect-ratio: 1.42;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

.gated-content-hero .eyebrow {
  color: #ffffff;
  font-size: 20px;
}

.gated-content-rich-text p {
  color: #DADADA;
  font-size: 18px !important;
}

.gated-content-rich-text p,
.gated-content-hero__copy > p {
  margin: 0 0 26px;
  color: #DADADA;
  font-size: 18px;
  line-height: 1.78;
}

.gated-content-checklist li {
  min-height: 0;
  padding-left: 0;
  color: #DADADA;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
}

.gated-content-page .eyebrow {
  color: #fff;
  font-size: 20px;
}

.gated-content-overview .eyebrow {
  color: #62cac2;
  font-size: 20px;
}

.gated-content-overview h2 {
  max-width: 700px;
  margin: 0 0 22px;
  color: transparent;
  background: linear-gradient(180deg, #E0E0E0 0%, #7A7A7A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(35px, 3vw, 48px);
  line-height: 1.2;
  letter-spacing: .05em;
}

.gated-thank-you-page {
  min-height: 100vh;
  background: #05070e;
  color: #fff;
}

.gated-thank-you-page .design-container {
  width: min(1600px, calc(100% - 104px));
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}

.gated-thank-you-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 142px 0 120px;
  background: var(--gated-thank-you-bg) center top / cover no-repeat #071426;
}

.gated-thank-you-back {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
  text-transform: uppercase;
}

.gated-thank-you-back span {
  width: 52px;
  height: 51px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.gated-thank-you-back svg {
  display: block;
  width: 52px;
  height: 51px;
}

.gated-thank-you-back:hover,
.gated-thank-you-back:focus {
  color: #62cac2;
}

.gated-thank-you-hero__copy {
  max-width: 1320px;
  margin: 148px auto 0;
  text-align: center;
}

.gated-thank-you-hero .eyebrow {
  flex-wrap: nowrap;
  justify-content: center;
  color: #62cac2;
  font-size: 20px;
  letter-spacing: .42em;
}

.gated-thank-you-hero .eyebrow span {
  width: 76px;
}

.gated-thank-you-hero h1 {
  margin: 31px auto 25px;
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 75px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gated-thank-you-hero h1 em {
  color: #f06015;
  font-style: normal;
  -webkit-text-fill-color: #f06015;
}

.gated-thank-you-hero__copy > p:not(.eyebrow),
.gated-thank-you-hero__copy > p:not(.eyebrow) p,
.gated-thank-you-description,
.gated-thank-you-description p {
  max-width: 750px;
  margin: 0 auto;
  color: #dadada;
  font-size: 18px;
  line-height: 1.65;
}

.gated-thank-you-description p + p {
  margin-top: 25px;
}

.gated-thank-you-description a {
  color: #62cac2;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-thank-you-hero h1 {
  max-width: 1100px;
  font-size: 75px;
}

@media (max-width: 1199.98px) {
  .gated-content-hero__grid,
  .gated-content-overview__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .gated-thank-you-hero__copy {
    margin-top: 116px;
  }

  .gated-content-hero .gated-content-resource-card {
    margin: 0 auto;
  }

  .gated-content-form-card {
    max-width: 620px;
  }
}

@media (max-width: 1024px) {
  .gated-content-hero__copy {
    max-width: 100%;
  }

  .gated-content-hero h1 {
    max-width: 100%;
    margin: 20px 0 24px;
    font-size: 40px;
    line-height: 1.13;
    letter-spacing: 1.2px;
  }

  .contact-thank-you-hero h1 {
    max-width: 1100px;
    font-size: 40px;
  }

  .gated-thank-you-hero h1 {
    margin: 31px auto 25px;
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
}

@media (max-width: 767.98px) {
  .gated-content-hero {
    padding: 192px 0 72px;
  }

  .gated-content-page .eyebrow {
    color: #fff;
    font-size: 12px;
  }

  .gated-content-overview .eyebrow {
    color: #62cac2;
    font-size: 12px;
  }

  .gated-thank-you-page .design-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gated-thank-you-hero {
    min-height: 100vh;
    padding: 112px 0 72px;
  }

  .gated-thank-you-hero h1 {
    font-size: 30px;
    letter-spacing: .08em;
  }

  .gated-thank-you-hero__copy > p:not(.eyebrow),
  .gated-thank-you-description,
  .gated-thank-you-description p {
    font-size: 15px;
  }

  .gated-thank-you-back {
    font-size: 14px;
  }

  .gated-thank-you-back span {
    width: 44px;
    height: 43px;
  }

  .gated-thank-you-back svg {
    width: 25px;
    height: 25px;
  }

  .gated-thank-you-hero__copy {
    margin-top: 16px;
  }

  .gated-thank-you-hero .eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
  }

  .gated-thank-you-hero .eyebrow span {
    width: 0;
  }

  .gated-content-hero__grid {
    gap: 34px;
  }

  .gated-content-hero .gated-content-resource-card {
    width: min(320px, 92%);
    order: 2;
  }

  .gated-content-hero__copy {
    order: 1;
  }

  .gated-content-hero h1 {
    font-size: 30px;
  }

  .gated-content-overview {
    padding: 52px 20px 42px;
    background:
      linear-gradient(180deg, rgba(7,20,38,.94), rgba(7,20,38,.82)),
      url("../images/service-page/blog-contact-bg.png") center bottom / cover no-repeat #071426;
  }

  #gated-content-form h2 {
    max-width: 700px;
    margin: 0 0 22px;
    color: transparent;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .gated-content-overview__grid {
    gap: 42px;
  }

  .gated-content-form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 767.98px) {
  .gated-content-hero .gated-content-resource-card {
    order: 1;
  }

  .gated-content-hero__copy {
    order: 2;
  }
}
