:root {
  --detail-accent: #1ab3cc;
  --detail-accent-rgb: 26, 179, 204;
  --purple: #4b3a73;
  --purple-mid: #6a53a8;
  --magenta: #da1e5b;
  --yellow: #f7be00;
  --text: #3a3550;
  --muted: #6b6580;
  --surface: #fbf7ff;
  --line: rgba(75, 58, 115, 0.11);
  --shadow: 0 24px 60px rgba(49, 36, 83, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Mulish", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.detail-shell {
  min-width: 0;
  overflow: hidden;
}

.detail-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(75, 58, 115, 0.08);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-height: 84px;
}

.detail-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1500px, 100%);
  min-height: 84px;
  height: 84px;
  margin: 0 auto;
  padding: 10px 28px;
}

.detail-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  color: var(--purple);
  text-decoration: none;
}

.detail-brand img {
  width: auto;
  height: 44px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.detail-brand > span {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.detail-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.detail-nav-links a {
  position: relative;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.detail-nav-links .detail-nav-camp-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.08;
  text-align: center;
}

.detail-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--magenta);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.detail-nav-links a:hover::after,
.detail-nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.detail-nav-links a:hover,
.detail-nav-links a.active {
  color: var(--magenta);
}

.detail-nav-links .detail-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 8px 20px rgba(218, 30, 91, 0.3);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.detail-nav-links .detail-nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.detail-nav-links .detail-nav-cta::after {
  display: none;
}

.detail-menu-toggle {
  display: none;
}

.detail-nav-links .sis-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.detail-nav-links .sis-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.detail-nav-links .sis-nav-dropdown-trigger i {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.detail-nav-links .sis-nav-dropdown.is-open .sis-nav-dropdown-trigger i {
  margin-top: 4px;
  transform: rotate(225deg);
}

.detail-nav-links .sis-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: max-content;
  min-width: 210px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(75, 58, 115, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 50px rgba(49, 36, 83, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.detail-nav-links .sis-nav-dropdown.is-open .sis-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.detail-nav-links .sis-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.detail-nav-links .sis-nav-dropdown-menu a::after {
  display: none;
}

.detail-nav-links .sis-nav-dropdown-menu a:hover,
.detail-nav-links .sis-nav-dropdown-menu a:focus-visible {
  background: rgba(75, 58, 115, 0.08);
}

.detail-hero {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  background: #281f49;
}

.detail-hero-image,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero-image {
  object-fit: cover;
  transform: scale(1.025);
  animation: detailImageIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.detail-hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 18, 51, 0.93) 0%, rgba(36, 25, 68, 0.75) 45%, rgba(36, 25, 68, 0.28) 100%),
    linear-gradient(0deg, rgba(25, 18, 51, 0.42), transparent 50%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  padding: 96px 0 112px;
  color: #fff;
}

.detail-hero-content > * {
  max-width: 760px;
}

.detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.detail-breadcrumbs a {
  text-decoration: none;
}

.detail-breadcrumbs a:hover {
  color: #fff;
}

.detail-kicker,
.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--detail-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-kicker {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(12px);
}

.detail-kicker::before,
.detail-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.detail-hero h1,
.detail-section h2,
.detail-cta h2 {
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: -0.025em;
}

.detail-hero h1 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  text-wrap: balance;
}

.detail-lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.detail-hero-actions,
.detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.detail-btn:hover {
  transform: translateY(-2px);
}

.detail-btn-primary {
  background: var(--detail-accent);
  color: #fff;
  box-shadow: 0 13px 30px rgba(var(--detail-accent-rgb), 0.34);
}

.detail-btn-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.detail-scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-scroll-cue i {
  position: relative;
  width: 28px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.detail-scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  content: "";
  transform: translateX(-50%);
  animation: detailScroll 1.8s ease-in-out infinite;
}

.detail-facts-wrap {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100% - 48px));
  margin: -44px auto 0;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-facts article {
  position: relative;
  min-height: 124px;
  padding: 27px 30px;
}

.detail-facts article + article::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.detail-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.detail-fact-price {
  background: rgba(var(--detail-accent-rgb), 0.09);
}

.detail-fact-price strong {
  color: var(--detail-accent);
  font-size: 20px;
}

.detail-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.detail-section-heading {
  max-width: 760px;
}

.detail-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.detail-section-heading h2,
.detail-included-copy h2 {
  margin: 13px 0 0;
  color: var(--purple);
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.detail-section-heading > p {
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.detail-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
  margin-top: 40px;
}

.detail-intro-copy {
  margin: 0;
  color: #504a65;
  font-size: 20px;
  line-height: 1.75;
}

.detail-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-outcome {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(75, 58, 115, 0.06);
}

.detail-outcome span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: rgba(var(--detail-accent-rgb), 0.12);
  color: var(--detail-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  place-items: center;
}

.detail-outcome strong {
  display: block;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.detail-topics-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 12%, rgba(var(--detail-accent-rgb), 0.12), transparent 25%),
    linear-gradient(180deg, #fbf9ff 0%, #f6f1fd 100%);
}

.detail-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.detail-topic {
  position: relative;
  min-height: 178px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(75, 58, 115, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 30px rgba(75, 58, 115, 0.07);
}

.detail-topic::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(var(--detail-accent-rgb), 0.09);
  content: "";
}

.detail-topic-number {
  color: var(--detail-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.detail-topic h3 {
  margin: 13px 0 8px;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.detail-topic p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.detail-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.detail-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(75, 58, 115, 0.08);
}

.detail-plan:first-child {
  border-top: 5px solid var(--detail-accent);
}

.detail-plan-label {
  color: var(--detail-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-plan h3 {
  margin: 10px 0 0;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.detail-plan-price {
  margin-top: 18px;
  color: var(--detail-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.detail-plan-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.detail-plan ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-plan li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.detail-plan li::before,
.detail-included li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--detail-accent);
  content: "✓";
  font-weight: 900;
}

.detail-plan .detail-btn {
  width: 100%;
  margin-top: auto;
}

.detail-included {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
  padding-top: 36px;
}

.detail-included-image {
  position: relative;
}

.detail-included-image::before {
  position: absolute;
  inset: 22px -20px -20px 22px;
  z-index: -1;
  border-radius: 24px;
  background: rgba(var(--detail-accent-rgb), 0.14);
  content: "";
}

.detail-included-image img {
  width: 100%;
  height: 430px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.detail-included-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.detail-included-copy li {
  position: relative;
  padding-left: 28px;
  color: #504a65;
  line-height: 1.55;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: min(1180px, calc(100% - 48px));
  margin: 22px auto 88px;
  padding: 52px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(125deg, var(--purple) 0%, var(--purple-mid) 56%, var(--detail-accent) 130%);
  box-shadow: var(--shadow);
  color: #fff;
}

.detail-cta > div:first-child {
  max-width: 650px;
}

.detail-cta .detail-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.detail-cta h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.12;
}

.detail-cta p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.detail-cta-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-top: 0;
}

.detail-btn-light {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 12px 28px rgba(24, 17, 48, 0.2);
}

.detail-btn-outline {
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff;
}

.detail-footer {
  padding: 48px 0 25px;
  background: #3e3163;
  color: #fff;
}

.detail-footer-brand {
  color: #fff;
}

.detail-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.detail-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.detail-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.detail-footer-links a:hover {
  color: #fff;
}

.detail-copyright {
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

@keyframes detailImageIn {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes detailScroll {
  0%, 100% { opacity: 0.45; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

@media (max-width: 1180px) {
  body {
    padding-top: 72px;
  }

  .detail-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    min-height: 72px;
    height: 72px;
  }

  .detail-nav {
    min-height: 72px;
    height: 72px;
    padding: 8px 16px;
  }

  .detail-menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(75, 58, 115, 0.18);
    border-radius: 12px;
    background: rgba(75, 58, 115, 0.06);
    cursor: pointer;
    place-content: center;
  }

  .detail-menu-toggle > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 2px 0;
    border-radius: 2px;
    background: var(--purple);
  }

  .detail-nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    display: none;
    width: min(300px, calc(100vw - 32px));
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px;
    border: 1px solid rgba(75, 58, 115, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(49, 36, 83, 0.18);
    backdrop-filter: blur(18px);
  }

  .detail-nav-links .detail-nav-camp-link {
    align-items: flex-start;
    text-align: left;
  }

  .detail-nav-links .sis-nav-dropdown {
    display: grid;
    width: 100%;
  }

  .detail-nav-links .sis-nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .detail-nav-links .sis-nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    padding: 7px;
    border-radius: 12px;
    background: rgba(75, 58, 115, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .detail-nav-links .sis-nav-dropdown.is-open .sis-nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .detail-nav-links.is-open {
    display: grid;
    gap: 15px;
  }

  .detail-nav-links .detail-nav-cta {
    text-align: center;
  }

  .detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-facts article:nth-child(3)::before {
    right: 24px;
    top: 0;
    left: 24px;
    width: auto;
    height: 1px;
  }

  .detail-intro-grid,
  .detail-included {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .detail-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-cta {
    display: grid;
    padding: 42px;
  }

  .detail-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .detail-nav,
  .detail-hero-content,
  .detail-facts-wrap,
  .detail-section,
  .detail-cta,
  .detail-footer-inner,
  .detail-copyright {
    width: min(100% - 32px, 1180px);
  }

  .detail-brand > span {
    font-size: 10px;
  }

  .detail-hero {
    min-height: 620px;
  }

  .detail-hero-content {
    padding-top: 88px;
  }

  .detail-hero-overlay {
    background: linear-gradient(90deg, rgba(25, 18, 51, 0.92), rgba(31, 22, 61, 0.62));
  }

  .detail-scroll-cue {
    display: none;
  }

  .detail-facts-wrap {
    margin-top: -34px;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .detail-facts article {
    min-height: auto;
    padding: 20px 22px;
  }

  .detail-facts article + article::before,
  .detail-facts article:nth-child(3)::before {
    right: 22px;
    top: 0;
    bottom: auto;
    left: 22px;
    width: auto;
    height: 1px;
  }

  .detail-section {
    padding: 66px 0;
  }

  .detail-intro-grid {
    margin-top: 30px;
  }

  .detail-intro-copy {
    font-size: 17px;
  }

  .detail-outcomes,
  .detail-topic-grid {
    grid-template-columns: 1fr;
  }

  .detail-included-image img {
    height: 300px;
  }

  .detail-included-image::before {
    inset: 14px -10px -10px 14px;
  }

  .detail-cta {
    margin-bottom: 64px;
    padding: 34px 26px;
  }

  .detail-cta-actions,
  .detail-cta-actions .detail-btn {
    width: 100%;
  }

  .detail-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
