:root {
  --hc10-ink: #102040;
  --hc10-navy: #182c55;
  --hc10-blue: #2667a8;
  --hc10-gold: #e7c45d;
  --hc10-mint: #d8f0e5;
  --hc10-paper: #fbfaf7;
  --hc10-white: #ffffff;
  --hc10-muted: #5f6b7a;
  --hc10-line: #d9dee8;
  --hc10-radius: 8px;
  --hc10-shadow: 0 18px 50px rgba(16, 32, 64, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--hc10-ink);
  background: var(--hc10-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--hc10-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--hc10-white);
  color: var(--hc10-ink);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--hc10-line);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.content-wide,
.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  order: 1;
  display: inline-flex;
  align-items: center;
}

.site-brand img {
  width: 84px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.site-header__actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0;
}

.site-header__actions .site-nav-account--mobile {
  display: none;
}

.site-nav {
  order: 2;
  margin-left: auto;
}

.site-nav__list,
.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list .menu-item {
  position: relative;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  color: var(--hc10-ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav__list .menu-item-has-children > a::after {
  width: 0.42rem;
  height: 0.42rem;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  transform: translateY(-0.12rem) rotate(45deg);
}

.site-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 230px;
  margin: 0;
  padding: 0.95rem 0.4rem 0.4rem;
  border: 1px solid rgba(24, 44, 85, 0.12);
  border-radius: var(--hc10-radius);
  background: var(--hc10-white);
  box-shadow: var(--hc10-shadow);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
}

.site-nav__list .menu-item:hover > .sub-menu,
.site-nav__list .menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav__list .sub-menu a {
  display: flex;
  min-height: 38px;
  border-radius: 7px;
  padding: 0.52rem 0.65rem;
  color: var(--hc10-ink);
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: nowrap;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus {
  background: #eef4ff;
}

.site-nav-account {
  position: relative;
  display: flex;
  align-items: center;
}

.site-account-login-entry {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid rgba(24, 44, 85, 0.13);
  border-radius: 999px;
  padding: 0.32rem 0.72rem 0.32rem 0.38rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--hc10-ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-account-login-entry:hover,
.site-account-login-entry:focus {
  border-color: rgba(38, 103, 168, 0.28);
  color: var(--hc10-ink);
  background: #f4f8ff;
  text-decoration: none;
}

.site-account-login-entry__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 103, 168, 0.22);
  border-radius: 50%;
  background: #edf5ff;
  color: var(--hc10-blue);
}

.site-account-login-entry__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-account-login-entry__text {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.site-account-login-entry strong {
  color: inherit;
  font-size: 0.86rem;
}

.site-account-login-entry small {
  color: var(--hc10-muted);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.site-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 44px;
  border: 1px solid rgba(216, 173, 36, 0.52);
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  background: #fff8e3;
  color: #4f3c00;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header-call:hover,
.site-header-call:focus {
  border-color: rgba(199, 154, 18, 0.72);
  background: #fff1c4;
  color: #332600;
  text-decoration: none;
}

.site-header-call__icon,
.site-whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header-call__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(24, 44, 85, 0.14);
  border-radius: 999px;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  background: var(--hc10-white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.site-account-link img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.site-account-link--medallion {
  width: 44px;
  height: 44px;
  justify-content: center;
  border-color: rgba(24, 44, 85, 0.18);
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 10px 22px rgba(16, 32, 64, 0.1);
}

.site-account-link--medallion img {
  width: 34px;
  height: 34px;
}

.site-account-link--medallion > span,
.site-account-link--medallion .site-account-chevron {
  display: none;
}

.site-account-link span {
  display: grid;
  line-height: 1.15;
}

.site-account-link.site-account-link--medallion {
  gap: 0;
}

.site-account-link.site-account-link--medallion > span,
.site-account-link.site-account-link--medallion .site-account-chevron {
  display: none;
}

.site-account-link strong {
  color: var(--hc10-ink);
  font-size: 0.9rem;
}

.site-account-link small {
  color: var(--hc10-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.site-account-chevron {
  color: var(--hc10-muted);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.site-account-link[aria-expanded="true"] .site-account-chevron {
  transform: rotate(180deg);
}

.site-account-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 180px;
  border: 1px solid rgba(24, 44, 85, 0.12);
  border-radius: 8px;
  padding: 0.35rem;
  background: var(--hc10-white);
  box-shadow: var(--hc10-shadow);
}

.site-account-menu[hidden] {
  display: none;
}

.site-account-menu a {
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 0.72rem 0.8rem;
  color: var(--hc10-ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-account-menu a:hover,
.site-account-menu a:focus {
  background: #eef4ff;
}

.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  padding: 0;
  color: var(--hc10-ink);
  background: var(--hc10-white);
  font-weight: 700;
  cursor: pointer;
}

.site-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  flex: 0 0 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.site-nav-toggle__bar + .site-nav-toggle__bar {
  margin-top: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 12px;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav-backdrop {
  display: none;
}

.site-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.62rem 0.95rem 0.62rem 0.72rem;
  background: #1fae68;
  color: var(--hc10-white);
  box-shadow: 0 18px 42px rgba(8, 80, 46, 0.28);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus {
  background: #188d55;
  color: var(--hc10-white);
  text-decoration: none;
}

.site-whatsapp-float__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.site-whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-page {
  display: flex;
  flex-direction: column;
  background: #fbf9f5;
}

.home-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.home-hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100svh - 78px));
  padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(3.4rem, 5vw, 4.6rem);
  background: #091c34;
  color: var(--hc10-white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 28, 52, 0.96) 0%, rgba(9, 28, 52, 0.82) 38%, rgba(9, 28, 52, 0.42) 68%, rgba(9, 28, 52, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 28, 52, 0.12) 0%, rgba(9, 28, 52, 0.78) 100%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(640px, calc(100svh - 190px));
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.home-hero__copy {
  align-self: center;
  min-width: 0;
  max-width: 760px;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(208, 197, 175, 0.72);
  border-radius: 999px;
  margin: 0 0 1rem;
  padding: 0.45rem 0.72rem;
  background: rgba(255, 255, 255, 0.13);
  color: #ffe8a0;
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-pill svg,
.home-benefit__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero h1 {
  max-width: 820px;
  color: var(--hc10-white);
  font-size: clamp(2.75rem, 4.15vw, 4.75rem);
  line-height: 1;
}

.home-hero__text {
  max-width: 620px;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.home-hero__seo {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.7;
}

.home-hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 760px;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.home-hero__points li {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  border-left: 2px solid rgba(212, 175, 55, 0.86);
  padding-left: 0.78rem;
}

.home-hero__points strong {
  color: var(--hc10-white);
  font-size: 0.88rem;
  line-height: 1.2;
}

.home-hero__points span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.4;
}

.home-hero__visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% center;
  background: var(--hc10-white);
}

.home-hero__stat {
  justify-self: end;
  align-self: end;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.65rem;
  align-items: center;
  width: min(100%, 330px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--hc10-radius);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.home-hero__stat::before {
  display: block;
  width: 36px;
  height: 36px;
  grid-row: span 2;
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(90deg, transparent 45%, #a27c00 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, #a27c00 45% 55%, transparent 55%),
    #f4dc86;
}

.home-hero__stat strong {
  color: var(--hc10-white);
  font-size: 1.05rem;
  line-height: 1.1;
}

.home-hero__stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.25;
}

.home-benefits {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-bottom: 4.6rem;
}

.home-benefits--raised {
  margin-top: -2.25rem;
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-benefit {
  display: grid;
  min-height: 128px;
  place-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(217, 222, 232, 0.72);
  border-radius: var(--hc10-radius);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(16, 32, 64, 0.08);
  text-align: center;
}

.home-benefit__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d5e3ff;
  color: #374762;
}

.home-benefit:nth-child(2) .home-benefit__icon {
  background: #f8e7a4;
  color: #574500;
}

.home-benefit:nth-child(3) .home-benefit__icon {
  background: #d8f0e5;
  color: #24533e;
}

.home-benefit h2 {
  margin: 0;
  color: #091c34;
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-quote {
  padding: 3.8rem 0;
  background: #eff3f8;
}

.home-quote blockquote {
  max-width: 820px;
  margin: 0 auto;
  color: #091c34;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.home-courses,
.home-stories,
.home-professor,
.home-form {
  padding: 5.2rem 0;
}

.home-form__grid {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.home-form__embed {
  margin-top: 1.5rem;
  text-align: left;
}

.home-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.home-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.home-section-heading h2 {
  color: #091c34;
  font-size: 2.25rem;
}

.home-section-heading p {
  margin: 0 auto;
  max-width: 650px;
  color: #5d6778;
}

.home-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.home-course-card,
.home-empty-card,
.home-testimonial,
.home-professor__card {
  border: 1px solid rgba(217, 222, 232, 0.78);
  border-radius: var(--hc10-radius);
  background: var(--hc10-white);
  box-shadow: 0 12px 34px rgba(16, 32, 64, 0.08);
}

.home-course-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.home-course-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1f4;
}

.home-course-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-course-card__media span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  background: rgba(9, 28, 52, 0.84);
  color: var(--hc10-white);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-course-card__body {
  display: grid;
  gap: 0.65rem;
  flex: 1;
  padding: 1.05rem 1.05rem 0;
}

.home-course-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-course-card__tags span {
  border: 1px solid #e4e2de;
  border-radius: 6px;
  padding: 0.22rem 0.48rem;
  background: #f5f3ef;
  color: #4d4635;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-course-card__tags .home-course-card__tag--gold,
.course-list-card__tags .course-list-card__tag--gold {
  background: #e1b82f;
  color: #2a2103;
  box-shadow: inset 0 0 0 1px rgba(115, 92, 0, 0.22);
}

.home-course-card__tags .home-course-card__tag--gold {
  border-color: #d0a719;
}

.home-course-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.home-course-card h3 a {
  color: #091c34;
  text-decoration: none;
}

.home-course-card p {
  margin: 0;
  color: #5f6b7a;
  font-size: 0.94rem;
}

.home-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border-top: 1px solid rgba(217, 222, 232, 0.72);
  margin-top: 1rem;
  padding: 1rem 1.05rem;
}

.home-course-card__footer strong {
  color: #091c34;
}

.button--small {
  min-height: 36px;
  padding: 0.52rem 0.78rem;
  font-size: 0.86rem;
}

.home-empty-card {
  padding: 1.4rem;
  text-align: center;
}

.home-stories .home-shell {
  display: grid;
  gap: 4.6rem;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.94fr);
  align-items: center;
  gap: 3.3rem;
}

.home-story--reverse {
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1fr);
}

.home-story--reverse .home-story__copy {
  order: 2;
}

.home-story--reverse .home-story__media {
  order: 1;
}

.home-story__copy {
  min-width: 0;
}

.home-story h2 {
  color: #091c34;
  font-size: 1.7rem;
}

.home-story p {
  color: #4d5b6c;
}

.home-story a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8a6900;
  font-weight: 900;
  text-decoration: none;
}

.home-story a::after {
  content: "->";
}

.home-story__media {
  overflow: hidden;
  border-radius: var(--hc10-radius);
  background: #edf0f4;
  box-shadow: 0 18px 46px rgba(16, 32, 64, 0.12);
}

.home-story__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-dark-band {
  padding: 4.6rem 0;
  background: #091c34;
  color: var(--hc10-white);
}

.home-dark-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.home-dark-card {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding-right: 2rem;
}

.home-dark-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.home-dark-card__kicker {
  width: fit-content;
  border-radius: 999px;
  margin: 0;
  padding: 0.28rem 0.58rem;
  background: var(--hc10-gold);
  color: #241a00;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-dark-card h2 {
  margin: 0;
  color: var(--hc10-white);
  font-size: 1.55rem;
}

.home-dark-card p:not(.home-dark-card__kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.button--light {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  color: var(--hc10-white);
}

.button--gold {
  width: fit-content;
  background: var(--hc10-gold);
  color: #241a00;
}

.home-professor {
  background: #fbf9f5;
}

.home-professor__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #f5f3ef;
}

.home-professor__card img {
  display: block;
  width: 180px;
  height: 180px;
  border: 5px solid var(--hc10-white);
  border-radius: 50%;
  object-fit: cover;
  background: var(--hc10-white);
  box-shadow: 0 12px 30px rgba(16, 32, 64, 0.12);
}

.home-professor__card h2 {
  color: #091c34;
  font-size: 2rem;
}

.home-professor__role {
  margin: 0 0 0.9rem;
  color: #8a6900;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-professor__card p:not(.home-professor__role) {
  max-width: 760px;
  margin: 0;
  color: #4d5b6c;
  font-size: 1.04rem;
}

.home-testimonials {
  padding: 5rem 0;
  background: #efeeea;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-testimonial {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  padding: 1.35rem;
}

.home-stars {
  color: #d4af37;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.home-testimonial p {
  margin: 0;
  color: #4d5b6c;
  font-style: italic;
}

.home-testimonial footer {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid #e4e2de;
  margin-top: 0.4rem;
  padding-top: 1rem;
}

.home-testimonial footer > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #d5e3ff;
  color: #374762;
  font-weight: 900;
}

.home-testimonial strong,
.home-testimonial small {
  display: block;
}

.home-testimonial strong {
  color: #091c34;
  line-height: 1.2;
}

.home-testimonial small {
  color: #6b7280;
}

@media (min-width: 1180px) {
  .home-page .home-shell {
    width: min(1200px, calc(100% - 64px));
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 820px) minmax(260px, 1fr);
  }
}

.eyebrow,
.hc10-kicker {
  margin: 0 0 0.75rem;
  color: var(--hc10-blue);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.22rem;
}

.home-hero__copy p:not(.eyebrow):not(.home-pill):not(.home-hero__text):not(.home-hero__seo) {
  max-width: 680px;
  color: var(--hc10-muted);
  font-size: 1.2rem;
}

.hero-actions,
.product-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button,
.hc10-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--hc10-radius);
  padding: 0.72rem 1rem;
  font-weight: 800;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.button--primary,
.hc10-button {
  background: var(--hc10-navy);
  color: var(--hc10-white);
}

.button--ghost {
  border-color: var(--hc10-line);
  background: var(--hc10-white);
  color: var(--hc10-ink);
}

.home-hero .button--primary {
  background: var(--hc10-gold);
  color: #241a00;
}

.home-hero .button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--hc10-white);
  backdrop-filter: blur(12px);
}

.content-band {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.content-band--light {
  background: var(--hc10-white);
}

.content-narrow {
  width: min(780px, calc(100% - 32px));
  margin-inline: auto;
}

.hc10-legal-template .content-narrow {
  width: min(920px, calc(100% - 32px));
}

.hc10-legal-template .entry {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.hc10-legal-template .entry-header h1 {
  margin-bottom: 0.2rem;
}

.hc10-legal-template .entry-content {
  color: #263243;
  font-size: 1rem;
  line-height: 1.78;
}

.hc10-legal-template .entry-content h2 {
  margin: 1.55rem 0 0.45rem;
  color: var(--hc10-navy);
  font-size: 1.32rem;
  line-height: 1.25;
}

.hc10-legal-template .entry-content p,
.hc10-legal-template .entry-content ul {
  margin-top: 0;
}

.hc10-legal-template .entry-content ul {
  padding-left: 1.2rem;
}

.hc10-legal-template .entry-content li + li {
  margin-top: 0.32rem;
}

.checkout-page {
  padding: clamp(2.8rem, 6vw, 5.4rem) 0;
  background: linear-gradient(180deg, #fbf9f5 0%, #f5f3ef 100%);
}

.checkout-page__shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.checkout-page__hero {
  max-width: 760px;
  margin: 0 0 clamp(1.8rem, 5vw, 3rem);
}

.checkout-page__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(208, 197, 175, 0.72);
  border-radius: 999px;
  margin: 0 0 1rem;
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.78);
  color: #7a5a00;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-page__hero h1 {
  max-width: 760px;
  margin: 0 0 0.8rem;
  color: #0d1117;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.checkout-page__hero p:not(.checkout-page__eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #4f5d72;
  font-size: 1.08rem;
}

.hc10-order-confirmation {
  display: grid;
  gap: 1rem;
}

.hc10-order-confirmation__panel {
  border: 1px solid #e6ded2;
  border-radius: var(--hc10-radius);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: var(--hc10-white);
  box-shadow: 0 12px 34px rgba(70, 56, 35, 0.07);
}

.hc10-order-confirmation__header {
  display: grid;
  gap: 0.65rem;
  max-width: 780px;
}

.hc10-order-confirmation__header h2,
.hc10-order-confirmation__panel h2 {
  margin: 0;
  color: #0d1117;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.hc10-order-confirmation__header p,
.hc10-order-confirmation__panel > p {
  margin: 0;
  color: #4f5d72;
}

.hc10-order-confirmation__password-setup {
  margin-top: 1.2rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  background: #f6f9fc;
}

.hc10-order-confirmation__password-setup h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: #0d1117;
}

.hc10-order-confirmation__password-setup > p {
  margin: 0 0 0.9rem;
  color: var(--hc10-muted);
}

.hc10-order-confirmation__password-setup form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.hc10-order-confirmation__password-setup input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius-sm, 8px);
  font: inherit;
}

.hc10-order-confirmation__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.2rem;
}

.hc10-order-confirmation__summary {
  margin: 0;
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  overflow: hidden;
}

.hc10-order-confirmation__summary > div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
}

.hc10-order-confirmation__summary > div + div {
  border-top: 1px solid var(--hc10-line);
}

.hc10-order-confirmation__summary dt {
  color: var(--hc10-muted);
  font-weight: 800;
}

.hc10-order-confirmation__summary dd {
  margin: 0;
  color: var(--hc10-ink);
  font-weight: 850;
  text-align: right;
  overflow-wrap: anywhere;
}

.hc10-order-confirmation__side {
  display: grid;
  gap: 0.75rem;
}

.hc10-order-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .hc10-order-confirmation__layout,
  .hc10-order-confirmation__summary > div {
    grid-template-columns: 1fr;
  }

  .hc10-order-confirmation__summary dd {
    text-align: left;
  }
}

.about-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.about-page {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  background: #fbf5ee;
}

.about-hero {
  max-width: 760px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 0.9rem;
  color: #8a6900;
  font-size: clamp(2.35rem, 5vw, 3.05rem);
}

.about-hero p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--hc10-ink);
  font-size: 1.08rem;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.about-story,
.about-professor,
.about-value-card {
  border: 1px solid #eadcc9;
  border-radius: 8px;
  background: var(--hc10-white);
  box-shadow: 0 8px 24px rgba(99, 74, 34, 0.05);
}

.about-story {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 1.7rem);
}

.about-story__mark {
  position: absolute;
  top: -18px;
  right: -6px;
  width: 94px;
  color: rgba(16, 32, 64, 0.06);
}

.about-story h2,
.about-professor h2,
.about-value-card h3 {
  color: #0d1117;
}

.about-story p {
  position: relative;
  max-width: 620px;
  color: #2f2f38;
}

.about-professor {
  overflow: hidden;
}

.about-professor__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: #f8efe1;
}

.about-professor__body {
  padding: 1.45rem;
}

.about-professor__body h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.about-professor__role {
  margin: 0 0 1rem;
  color: #8a6900;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-professor ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-professor li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: #343947;
}

.about-professor li span {
  color: #9b7600;
}

.about-professor svg,
.about-value-card svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-values {
  margin-top: clamp(2.6rem, 6vw, 3.5rem);
}

.about-values > h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0d1117;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-value-card {
  min-height: 218px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 1.55rem 1.35rem;
  text-align: center;
}

.about-value-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.about-value-card__icon svg {
  width: 24px;
  height: 24px;
}

.about-value-card__icon--gold {
  background: #e8b900;
  color: #102040;
}

.about-value-card__icon--blue {
  background: #b8cbff;
  color: #364f91;
}

.about-value-card__icon--cream {
  background: #f2e4cf;
  color: #102040;
}

.about-value-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.about-value-card p {
  margin: 0;
  color: #343947;
}

.about-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.7rem, 6vw, 3.6rem);
  border-radius: 8px;
  padding: clamp(2.3rem, 5vw, 3.4rem) 1.5rem;
  background:
    linear-gradient(rgba(24, 44, 85, 0.92), rgba(24, 44, 85, 0.92)),
    radial-gradient(circle at 18% 28%, rgba(231, 196, 93, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 84px 84px,
    var(--hc10-navy);
  color: var(--hc10-white);
  text-align: center;
}

.about-cta div {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
}

.about-cta h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}

.about-cta p {
  margin: 0 auto 1.4rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.about-cta .button {
  min-width: 210px;
  background: #9b7600;
  color: var(--hc10-white);
}

.contact-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.contact-page {
  padding: clamp(2.8rem, 6vw, 5.4rem) 0;
  background: #fbf9f5;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
}

.contact-hero__copy {
  max-width: 540px;
}

.contact-hero h1 {
  margin: 0 0 1rem;
  color: #0d1117;
  font-size: clamp(2.25rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.contact-hero p {
  margin: 0;
  color: #343947;
  font-size: 1.08rem;
}

.contact-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  object-fit: cover;
  background: #f1eadf;
  box-shadow: 0 16px 38px rgba(16, 32, 64, 0.12);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
  border-radius: 8px;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
  padding: clamp(1.4rem, 4vw, 2rem);
  background: #f4f2ee;
}

.contact-info {
  min-width: 0;
}

.contact-info h2,
.contact-form-card h2,
.contact-expert h2,
.contact-faq h2 {
  margin: 0 0 1rem;
  color: #0d1117;
  line-height: 1.15;
}

.contact-info > p {
  max-width: 360px;
  margin: 0 0 1.8rem;
  color: #505867;
  font-size: 0.96rem;
}

.contact-info__list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info__list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d6e4ff;
  color: #335c9e;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-info__list strong {
  display: block;
  color: #5f6b7a;
  font-size: 0.78rem;
  line-height: 1.25;
}

.contact-info__list a,
.contact-info__list b {
  display: block;
  color: #0d1117;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.contact-info__list small {
  display: block;
  color: #505867;
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-form-card {
  border-radius: 8px;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: var(--hc10-white);
  box-shadow: 0 18px 50px rgba(16, 32, 64, 0.08);
}

.contact-form-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 3vw, 1.55rem);
}

.contact-form-card form {
  display: grid;
  gap: 0.5rem;
}

.contact-form-card .wpcf7-form p {
  margin: 0;
}

.contact-form-card .wpcf7-form br,
.contact-form-card .hidden-fields-container {
  display: none;
}

.contact-form-card .hc10-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.contact-form-card label {
  display: grid;
  gap: 0.16rem;
  margin: 0;
  color: #0d1117;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card input:not([type="submit"]),
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 34px;
  border: 1px solid #dfe3ea;
  border-radius: 6px;
  padding: 0.36rem 0.58rem;
  color: #0d1117;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
}

.contact-form-card textarea {
  height: 92px;
  min-height: 92px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #d5ae25;
  outline: 3px solid rgba(213, 174, 37, 0.2);
}

.contact-form-card .wpcf7-submit,
.contact-form-card .hc10-cf7-submit {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 154px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  margin-top: 0.45rem;
  padding: 0.52rem 1.05rem;
  background: #d8af26;
  color: #0d1117;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-form-card .wpcf7-not-valid-tip {
  margin-top: 0.28rem;
  color: #a32929;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form-card .wpcf7-spinner {
  margin: 0 0 0 0.7rem;
  vertical-align: middle;
}

.contact-form-card .wpcf7-response-output {
  border-radius: 8px;
  margin: 0.8rem 0 0;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}

.contact-form-card__empty {
  border: 1px dashed #d7c6a2;
  border-radius: 8px;
  padding: 1rem;
  color: #5f6b7a;
  background: #fff9ea;
}

.contact-form-card__empty p {
  margin: 0;
}

.contact-expert {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  border-radius: 8px;
  margin-bottom: clamp(3rem, 7vw, 5.2rem);
  padding: clamp(1.3rem, 4vw, 2rem);
  background: #cfe0ff;
  box-shadow: 0 14px 36px rgba(16, 32, 64, 0.08);
}

.contact-expert img {
  width: 128px;
  height: 128px;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
  background: #f1eadf;
}

.contact-expert blockquote {
  margin: 0 0 0.8rem;
  color: #1d315c;
  font-size: 1rem;
}

.contact-expert p {
  margin: 0;
  color: #102040;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-faq {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.contact-faq h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
}

.contact-faq__list {
  display: grid;
  gap: 0.8rem;
  text-align: left;
}

.contact-faq details {
  border: 1px solid #e6e2d9;
  border-radius: 8px;
  background: var(--hc10-white);
  box-shadow: 0 10px 28px rgba(16, 32, 64, 0.06);
}

.contact-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.9rem 1.1rem;
  color: #0d1117;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.contact-faq summary::-webkit-details-marker {
  display: none;
}

.contact-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #365179;
  border-bottom: 2px solid #365179;
  transform: rotate(45deg);
}

.contact-faq details[open] summary::after {
  transform: translateY(3px) rotate(225deg);
}

.contact-faq details p {
  margin: 0;
  border-top: 1px solid #eee8dc;
  padding: 0 1.1rem 1rem;
  color: #4c5666;
}

.blog-shell,
.article-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.blog-page,
.article-page {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.blog-hero {
  max-width: 740px;
  margin-bottom: clamp(2.4rem, 6vw, 4.8rem);
}

.blog-hero h1,
.article-hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  line-height: 1.12;
}

.blog-hero p,
.article-lead {
  max-width: 700px;
  color: var(--hc10-muted);
  font-size: 1.12rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-filters {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 2rem;
}

.blog-filter,
.blog-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  color: var(--hc10-ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.blog-filter {
  min-height: 36px;
  border: 1px solid #d0c5af;
  padding: 0.52rem 0.95rem;
  background: transparent;
}

.blog-filter.is-active,
.blog-filter:hover {
  border-color: var(--hc10-gold);
  background: var(--hc10-gold);
  color: #241a00;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.blog-card,
.blog-newsletter,
.blog-popular,
.article-cta,
.article-share,
.article-author,
.article-toc {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: var(--hc10-white);
  box-shadow: 0 8px 24px rgba(16, 32, 64, 0.06);
}

.blog-card {
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 32, 64, 0.1);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e4e2de;
}

.blog-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.035);
}

.blog-card__image {
  transition: transform 260ms ease;
}

.blog-image--fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(231, 196, 93, 0.34), rgba(216, 240, 229, 0.55)),
    #f5f3ef;
}

.blog-image--fallback img {
  width: min(130px, 48%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(16, 32, 64, 0.12));
}

.blog-card__body {
  padding: 1.35rem;
}

.blog-pill {
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.6rem;
  background: #e4e2de;
  color: #4d4635;
  font-size: 0.74rem;
}

.blog-pill--strong {
  background: rgba(231, 196, 93, 0.28);
  color: #554300;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.blog-card h2 a {
  color: var(--hc10-ink);
  text-decoration: none;
}

.blog-card p {
  display: -webkit-box;
  min-height: 4.8em;
  margin: 0 0 1.15rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--hc10-muted);
}

.blog-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  color: var(--hc10-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card__meta span,
.article-meta > span {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.blog-icon {
  position: relative;
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.blog-icon--calendar {
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.blog-icon--calendar::before {
  position: absolute;
  top: 3px;
  left: 2px;
  right: 2px;
  height: 1.5px;
  content: "";
  background: currentColor;
}

.blog-icon--clock {
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.blog-icon--clock::before {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 1.5px;
  height: 5px;
  content: "";
  background: currentColor;
}

.blog-icon--clock::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 4px;
  height: 1.5px;
  content: "";
  background: currentColor;
}

.blog-icon--list::before {
  content: "";
  width: 16px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 5.5px 0 currentColor;
}

.blog-sidebar,
.article-sidebar {
  display: grid;
  gap: 1.8rem;
}

.blog-newsletter {
  padding: 1.55rem;
  background: #efeeea;
}

.blog-newsletter h2,
.blog-popular h2,
.article-cta h2 {
  font-size: 1.55rem;
}

.blog-newsletter p,
.article-cta p {
  color: #4d4635;
}

.blog-newsletter form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.blog-newsletter input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d0c5af;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  background: var(--hc10-white);
  color: var(--hc10-ink);
  font: inherit;
}

.blog-newsletter .button,
.article-cta .button {
  width: 100%;
  background: var(--hc10-gold);
  color: #241a00;
}

.blog-popular {
  padding: 1.55rem;
}

.blog-popular h2 {
  border-bottom: 1px solid #d0c5af;
  padding-bottom: 0.85rem;
}

.blog-popular__list {
  display: grid;
  gap: 1rem;
}

.blog-popular__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  color: var(--hc10-ink);
  text-decoration: none;
}

.blog-popular__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 7px;
  background: #e4e2de;
}

.blog-popular__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-popular__item strong {
  display: block;
  line-height: 1.2;
}

.blog-popular__item small {
  color: var(--hc10-muted);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0c5af;
  border-radius: 999px;
  color: var(--hc10-ink);
  font-weight: 800;
  text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  border-color: var(--hc10-gold);
  background: var(--hc10-gold);
  color: #241a00;
}

.blog-empty {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--hc10-white);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: var(--hc10-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-breadcrumb a {
  color: var(--hc10-blue);
  text-decoration: none;
}

.article-hero {
  max-width: 840px;
  margin-bottom: 2rem;
}

.article-meta {
  margin-top: 1.4rem;
}

.article-author-mini {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
}

.article-author-mini__avatar,
.article-author__avatar {
  border-radius: 999px;
}

.article-author-mini small,
.article-author__role {
  display: block;
  color: var(--hc10-muted);
}

.article-visual {
  aspect-ratio: 21 / 9;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 8px;
  background: #e4e2de;
  box-shadow: 0 8px 24px rgba(16, 32, 64, 0.08);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article-content {
  min-width: 0;
  color: var(--hc10-ink);
}

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

.article-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.article-content h3 {
  margin-top: 1.6rem;
}

.article-content p,
.article-content li {
  color: var(--hc10-muted);
  font-size: 1.04rem;
}

.article-content a {
  font-weight: 800;
}

.article-content blockquote,
.article-content .wp-block-quote {
  border-left: 4px solid var(--hc10-gold);
  margin: 2rem 0;
  padding: 1.15rem 1.3rem;
  background: #fefce8;
  border-radius: 0 8px 8px 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  border: 1px solid var(--hc10-line);
  padding: 0.8rem;
}

.article-lead {
  color: var(--hc10-ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.article-toc {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  background: #f5f3ef;
}

.article-toc h2 {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.article-toc ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.15rem;
}

.article-toc a {
  color: var(--hc10-blue);
  text-decoration: none;
}

.article-sidebar {
  position: sticky;
  top: 96px;
}

.article-cta {
  overflow: hidden;
  padding: 0 1.35rem 1.35rem;
}

.article-cta__bar {
  height: 7px;
  margin: 0 -1.35rem 1.35rem;
  background: var(--hc10-gold);
}

.article-cta ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.article-cta li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 700;
}

.article-cta li::before {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  content: "";
  background: var(--hc10-gold);
}

.article-share {
  padding: 1.25rem;
  text-align: center;
}

.article-share p {
  margin-top: 0;
  font-weight: 800;
}

.article-share div {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.article-share button,
.article-share a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(38, 103, 168, 0.1);
  color: var(--hc10-blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.article-share button:hover,
.article-share a:hover {
  background: var(--hc10-blue);
  color: var(--hc10-white);
}

.article-author {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.2rem;
  max-width: 760px;
  margin-top: 3rem;
  padding: 1.5rem;
}

.article-author h2 {
  margin-bottom: 0.25rem;
  font-size: 1.45rem;
}

.article-author p {
  color: var(--hc10-muted);
}

.article-author a {
  font-weight: 800;
  text-decoration: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.course-listing {
  min-height: 70vh;
  padding: 4.4rem 0 5rem;
  background: #fbf9f5;
}

.course-listing__inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.course-listing__hero {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.course-listing__eyebrow {
  margin: 0 0 0.6rem;
  color: #735c00;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-listing__hero h1 {
  margin-bottom: 1rem;
  color: #091c34;
  font-size: 3rem;
  line-height: 1.08;
}

.course-listing__hero p:not(.course-listing__eyebrow) {
  margin: 0;
  color: #263243;
  font-size: 1.05rem;
  line-height: 1.7;
}

.course-filter--listing {
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.course-filter--listing a {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 1.2rem;
  background: #efeeea;
  color: #2d2a25;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.course-filter--listing a:hover,
.course-filter--listing a:focus,
.course-filter--listing a.is-active {
  background: #e1b82f;
  color: #2a2103;
}

.course-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.course-list-card,
.course-listing__empty {
  border: 1px solid #e4e2de;
  border-radius: var(--hc10-radius);
  background: var(--hc10-white);
  box-shadow: 0 14px 34px rgba(16, 32, 64, 0.08);
}

.course-list-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.course-list-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf0f4;
}

.course-list-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.course-list-card:hover .course-list-card__media img {
  transform: scale(1.035);
}

.course-list-card__media .course-list-card__fallback-logo {
  object-fit: contain;
  padding: 1.7rem;
  background: #f4f1ea;
}

.course-list-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 999px;
  padding: 0.36rem 0.65rem;
  background: rgba(9, 28, 52, 0.82);
  color: var(--hc10-white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.course-list-card__body {
  display: grid;
  gap: 0.75rem;
  flex: 1;
  padding: 1.35rem 1.35rem 0;
}

.course-list-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.course-list-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 4px;
  padding: 0.22rem 0.5rem;
  background: #f5f3ef;
  color: #4d4635;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
}

.course-list-card h2 {
  margin: 0;
  color: #091c34;
  font-size: 1.45rem;
  line-height: 1.24;
}

.course-list-card h2 a {
  color: inherit;
  text-decoration: none;
}

.course-list-card p {
  margin: 0;
  color: #344255;
  font-size: 0.98rem;
}

.course-list-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e9e2d7;
  margin: 1.25rem 1.35rem 0;
  padding: 1rem 0 1.35rem;
}

.course-list-card__price {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.course-list-card__price strong {
  color: #7a5f00;
  font-size: 1.45rem;
  line-height: 1;
}

.course-list-card__price span {
  color: #2d2a25;
  font-size: 0.8rem;
  font-weight: 800;
}

.course-list-card__button {
  min-height: 38px;
  border-color: #9aa8bd;
  padding: 0.55rem 1.15rem;
  background: transparent;
  color: #1d365c;
  font-size: 0.86rem;
  white-space: nowrap;
}

.course-list-card__button:hover,
.course-list-card__button:focus {
  border-color: #091c34;
  background: #091c34;
  color: var(--hc10-white);
}

.course-list-card__button--primary {
  border-color: #e1b82f;
  background: #e1b82f;
  color: #2a2103;
}

.course-list-card__button--primary:hover,
.course-list-card__button--primary:focus {
  border-color: #c59c13;
  background: #c59c13;
  color: #2a2103;
}

.course-listing__empty {
  padding: 1.5rem;
}

.course-listing__pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

.course-listing__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
}

.course-listing__pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8d1df;
  border-radius: 999px;
  padding: 0 0.55rem;
  background: var(--hc10-white);
  color: var(--hc10-ink);
  box-shadow: 0 10px 22px rgba(9, 28, 52, 0.08);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.course-listing__pagination .page-numbers.prev,
.course-listing__pagination .page-numbers.next {
  gap: 0.45rem;
  min-width: 0;
  padding: 0 1rem;
}

.course-pagination__arrow {
  font-size: 1.05em;
  line-height: 1;
}

.course-listing__pagination .page-numbers.current,
.course-listing__pagination .page-numbers:hover,
.course-listing__pagination .page-numbers:focus {
  border-color: var(--hc10-navy);
  background: var(--hc10-navy);
  color: var(--hc10-white);
  box-shadow: 0 14px 30px rgba(9, 28, 52, 0.14);
  transform: translateY(-1px);
}

.course-listing__pagination .page-numbers.current {
  cursor: default;
}

.course-listing__pagination .page-numbers:focus-visible {
  outline: 3px solid rgba(225, 184, 47, 0.45);
  outline-offset: 3px;
}

.course-listing__pagination .page-numbers.dots,
.course-listing__pagination .page-numbers.dots:hover {
  min-width: 24px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #617089;
  transform: none;
}

.course-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.course-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: var(--hc10-white);
  color: var(--hc10-ink);
  font-weight: 800;
  text-decoration: none;
}

.course-filter a:hover,
.course-filter a:focus,
.course-filter a.is-active {
  border-color: var(--hc10-navy);
  background: var(--hc10-navy);
  color: var(--hc10-white);
}

.course-filter.course-filter--listing a {
  border-color: transparent;
  background: #efeeea;
  color: #2d2a25;
}

.course-filter.course-filter--listing a:hover,
.course-filter.course-filter--listing a:focus,
.course-filter.course-filter--listing a.is-active {
  border-color: transparent;
  background: #e1b82f;
  color: #2a2103;
}

.feature-grid,
.product-grid,
.hc10-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hc10-product-picker .hc10-product-list {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}

.feature-grid article,
.product-card,
.hc10-product-card,
.product-summary,
.hc10-dashboard__section {
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  background: var(--hc10-white);
  box-shadow: 0 8px 24px rgba(16, 32, 64, 0.06);
}

.feature-grid article,
.product-card,
.hc10-product-card,
.hc10-dashboard__section,
.product-summary {
  padding: 1.2rem;
}

.product-card,
.hc10-product-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.hc10-product-picker .hc10-product-card {
  border-color: #e6ded2;
  background: #fffdf9;
}

.hc10-product-picker .hc10-product-card h3,
.hc10-product-picker .hc10-product-card p {
  margin: 0;
}

.hc10-product-picker .hc10-product-card p {
  color: #4f5d72;
}

.hc10-product-picker .hc10-product-card .hc10-button {
  width: fit-content;
}

.product-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.product-card h2 a {
  color: var(--hc10-ink);
  text-decoration: none;
}

.product-card__image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--hc10-paper);
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.product-detail {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.product-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-detail__price,
.hc10-price {
  color: var(--hc10-navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-detail__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--hc10-radius);
  object-fit: cover;
  background: var(--hc10-white);
}

.product-detail__image--logo {
  object-fit: contain;
  padding: 1.5rem;
}

.product-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 2rem;
  align-items: start;
}

.product-summary {
  position: sticky;
  top: 96px;
}

.product-summary dl {
  margin: 0 0 1.2rem;
}

.product-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--hc10-line);
  padding: 0.65rem 0;
}

.product-summary dl > div.product-summary__row--gold {
  align-items: center;
}

.product-summary dt {
  color: var(--hc10-muted);
  font-weight: 700;
}

.product-summary dd {
  margin: 0;
  text-align: right;
}

.product-summary__row--gold dd {
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  background: #e1b82f;
  color: #2a2103;
  box-shadow: inset 0 0 0 1px rgba(115, 92, 0, 0.22);
  font-weight: 900;
}

.product-summary .button {
  width: 100%;
}

.course-content {
  margin-top: 2rem;
}

.course-content .section-heading {
  margin-bottom: 1.2rem;
}

.course-content .section-heading p:not(.eyebrow) {
  color: var(--hc10-muted);
}

.course-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.course-modules,
.course-lessons {
  display: grid;
  gap: 1rem;
}

.course-module,
.course-lesson {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: var(--hc10-white);
}

.course-module {
  border-left: 5px solid var(--hc10-blue);
  overflow: hidden;
}

.course-module:nth-child(2n) {
  border-left-color: var(--hc10-gold);
}

.course-module:nth-child(3n) {
  border-left-color: #2d9368;
}

.course-module summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.course-module summary::-webkit-details-marker,
.course-lesson summary::-webkit-details-marker {
  display: none;
}

.course-module summary::before,
.course-lesson summary::before {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "+";
  background: var(--hc10-paper);
  color: var(--hc10-blue);
  font-weight: 900;
}

.course-module[open] > summary::before,
.course-lesson[open] > summary::before {
  content: "-";
}

.course-module__heading {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.course-module__index {
  color: var(--hc10-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-module__title,
.course-lesson__title {
  min-width: 0;
  overflow-wrap: anywhere;
}

.course-module summary strong {
  color: var(--hc10-blue);
  font-size: 0.9rem;
  white-space: nowrap;
}

.course-module__description {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--hc10-muted);
}

.course-lessons {
  padding: 0 1rem 1rem;
}

.course-lesson {
  border-left: 4px solid rgba(38, 103, 168, 0.42);
  overflow: hidden;
}

.course-module:nth-child(2n) .course-lesson {
  border-left-color: rgba(231, 196, 93, 0.72);
}

.course-module:nth-child(3n) .course-lesson {
  border-left-color: rgba(45, 147, 104, 0.55);
}

.course-lesson__summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
}

.course-lesson__number {
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  background: #f4f7fb;
  color: var(--hc10-muted);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.course-lesson__title {
  font-weight: 900;
}

.course-lesson__duration,
.course-player-lesson__duration {
  color: var(--hc10-muted);
  font-weight: 700;
}

.course-lesson__status {
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  color: var(--hc10-muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.course-lesson__body {
  padding: 0 1rem 1rem;
}

.course-lesson__locked {
  margin: 0.4rem 0 0;
  color: var(--hc10-muted);
}

.course-lesson__video,
.course-lesson__embed {
  margin: 1rem 0;
}

.course-lesson__video iframe,
.course-lesson__embed iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--hc10-radius);
}

.course-lesson__downloads {
  margin-top: 1rem;
  border-top: 1px solid var(--hc10-line);
  padding-top: 1rem;
}

.course-lesson__downloads ul {
  margin-bottom: 0;
}

.course-lesson__complete {
  margin-top: 1rem;
}

.product-detail--sales {
  width: 100%;
  margin: 0;
  padding: 0 0 5rem;
  background: #fbfaf7;
}

.product-detail--sales .product-hero,
.product-detail--sales .product-sales-nav,
.product-detail--sales .product-sales-layout {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 3rem;
  padding: 4.3rem 0 2.2rem;
}

.product-hero__copy {
  min-width: 0;
}

.product-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--hc10-ink);
  font-size: 3.25rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.product-hero__subtitle {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: #3e4a5d;
  font-size: 1.18rem;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.product-hero__format-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin-top: 1.1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(38, 103, 168, 0.18);
  border-radius: 8px;
  background: rgba(38, 103, 168, 0.06);
  color: var(--hc10-ink);
  font-size: 0.95rem;
}

.product-hero__format-link {
  font-weight: 800;
  color: var(--hc10-navy);
  text-decoration: none;
  white-space: nowrap;
}

.product-hero__format-link:hover,
.product-hero__format-link:focus-visible {
  text-decoration: underline;
}

.product-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 620px;
  margin-top: 1.8rem;
}

.product-hero__stats span {
  min-width: 0;
  border: 1px solid rgba(38, 103, 168, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.9rem;
}

.product-hero__stats span.product-hero__stat--gold {
  border-color: #d0a719;
  background: #e1b82f;
  box-shadow: 0 14px 28px rgba(115, 92, 0, 0.16);
}

.product-hero__stats strong,
.product-hero__stats small {
  display: block;
}

.product-hero__stats strong {
  color: var(--hc10-navy);
  font-size: 1.15rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-hero__stats small {
  margin-top: 0.2rem;
  color: var(--hc10-muted);
  font-weight: 800;
}

.product-hero__stats .product-hero__stat--gold strong,
.product-hero__stats .product-hero__stat--gold small {
  color: #2a2103;
}

.product-hero__media {
  position: relative;
  margin: 0;
}

.product-hero__media .product-detail__image {
  box-shadow: var(--hc10-shadow);
}

.product-hero__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hc10-navy);
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-sales-nav {
  position: sticky;
  top: 76px;
  z-index: 7;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.45rem;
  box-shadow: 0 10px 30px rgba(16, 32, 64, 0.08);
}

.product-sales-nav a {
  flex: 0 0 auto;
  border-radius: 7px;
  color: var(--hc10-ink);
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.product-sales-nav a:hover,
.product-sales-nav a:focus {
  background: rgba(38, 103, 168, 0.1);
  color: var(--hc10-blue);
}

.product-sales-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 2.3rem;
  align-items: start;
  padding-top: 2rem;
}

.product-sales-main {
  display: grid;
  gap: 0;
}

.product-section {
  padding: 3rem 0;
  border-top: 1px solid var(--hc10-line);
}

.product-section:first-child {
  border-top: 0;
  padding-top: 1rem;
}

.product-rich-text {
  max-width: 790px;
  color: #3f4a5a;
  font-size: 1.06rem;
}

.product-rich-text > *:first-child {
  margin-top: 0;
}

.product-rich-text > *:last-child {
  margin-bottom: 0;
}

.product-feature-grid,
.product-program-grid,
.product-testimonial-grid,
.product-related-grid {
  display: grid;
  gap: 1rem;
}

.product-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-feature-panel,
.product-program-card,
.product-testimonial,
.product-related-card {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: var(--hc10-white);
}

.product-feature-panel,
.product-program-card {
  padding: 1.25rem;
}

.product-feature-panel h3,
.product-program-card h3,
.product-related-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.product-check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-check-list li {
  position: relative;
  min-width: 0;
  padding-left: 1.35rem;
  color: #4a5668;
}

.product-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--hc10-gold);
  content: "";
}

.product-step-list {
  display: grid;
  gap: 0.85rem;
}

.product-step {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border-top: 1px solid var(--hc10-line);
  padding-top: 0.85rem;
}

.product-step span {
  color: var(--hc10-blue);
  font-weight: 900;
}

.product-step p {
  margin: 0;
  color: #3f4a5a;
}

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

.product-program-card div {
  color: #4a5668;
}

.product-program-card div > *:first-child {
  margin-top: 0;
}

.product-program-card div > *:last-child {
  margin-bottom: 0;
}

.product-section--curriculum .course-content {
  margin-top: 0;
}

.product-testimonial-grid,
.product-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-testimonial {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 1.25rem;
}

.product-testimonial__rating {
  color: #ad8000;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-testimonial blockquote {
  margin: 0;
  color: #263348;
  font-size: 1rem;
}

.product-testimonial figcaption {
  display: grid;
  gap: 0.1rem;
  color: var(--hc10-muted);
  font-size: 0.92rem;
}

.product-testimonial figcaption strong {
  color: var(--hc10-ink);
}

.product-faq-list {
  display: grid;
  gap: 0.8rem;
}

.product-faq {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: var(--hc10-white);
  overflow: hidden;
}

.product-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.product-faq summary::-webkit-details-marker {
  display: none;
}

.product-faq summary::after {
  flex: 0 0 auto;
  color: var(--hc10-blue);
  content: "+";
  font-size: 1.2rem;
}

.product-faq[open] summary::after {
  content: "-";
}

.product-faq div {
  border-top: 1px solid var(--hc10-line);
  padding: 0 1.1rem 1rem;
  color: #4a5668;
}

.product-related-card {
  overflow: hidden;
}

.product-related-card__image {
  display: block;
  background: var(--hc10-paper);
}

.product-related-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-related-card > div {
  padding: 1rem;
}

.product-related-card h3 a {
  color: var(--hc10-ink);
  text-decoration: none;
}

.product-related-card__price {
  margin: 0;
  color: var(--hc10-navy);
  font-weight: 900;
}

.product-summary--sales {
  position: sticky;
  top: 150px;
}

.product-summary__box {
  border: 1px solid var(--hc10-line);
  border-radius: 8px;
  background: var(--hc10-white);
  padding: 1.25rem;
  box-shadow: 0 12px 34px rgba(16, 32, 64, 0.09);
}

.product-summary__label {
  margin: 0 0 0.25rem;
  color: var(--hc10-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-summary__note {
  margin: 0.9rem 0 0;
  color: var(--hc10-muted);
  font-size: 0.9rem;
}

.product-mobile-cta {
  display: none;
}

.hc10-course-player-body {
  background: #f4f1eb;
}

.course-player {
  min-height: 100vh;
  background: #f6f3ee;
  color: #14161c;
}

.course-player__topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(210px, 318px) minmax(0, 1fr) minmax(230px, 300px);
  align-items: center;
  gap: 1.4rem;
  border-bottom: 1px solid #dedbd4;
  background: rgba(255, 253, 249, 0.96);
  padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(14px);
}

.course-player__back,
.course-player__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #50617c;
  font-weight: 900;
  text-decoration: none;
}

.course-player__back {
  justify-content: flex-start;
  padding-right: 1rem;
  border-right-color: #e4ded2;
}

.course-player__back:hover,
.course-player__back:focus,
.course-player__nav-button:hover,
.course-player__nav-button:focus {
  color: #172a52;
}

.course-player__topbar h1 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #15171d;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.course-player__progress {
  display: grid;
  gap: 0.35rem;
}

.course-player__progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #3d4350;
  font-size: 0.86rem;
}

.course-player__progress-track {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7fb;
}

.course-player__progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #dab231;
}

.course-player__layout {
  display: grid;
  grid-template-columns: 318px minmax(0, 1fr);
  min-height: calc(100vh - 66px);
}

.course-player__sidebar {
  position: sticky;
  top: 66px;
  height: calc(100vh - 66px);
  overflow: auto;
  border-right: 1px solid #dedbd4;
  background: #efede8;
}

.course-player__sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid #dedbd4;
  padding: 1.35rem 1.4rem;
  color: #3a2914;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-player__sidebar-heading > span {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.course-player__sidebar-complete {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  background: #dff1f8;
  color: #1f6d8c;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: none;
}

.course-player__sidebar-close {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #55657e;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.course-player__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e1ded6;
  border-radius: 8px;
  background: #fffdf9;
  color: #172a52;
  cursor: pointer;
  font-size: 1.25rem;
}

.course-player-module__check {
  display: inline-block;
  color: #1f6d8c;
  font-size: 0.9em;
}

.course-player__sidebar-backdrop {
  display: none;
}

.course-player__modules {
  display: grid;
}

.course-player-module {
  border-bottom: 1px solid #dedbd4;
}

.course-player-module summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
}

.course-player-module summary::-webkit-details-marker {
  display: none;
}

.course-player-module summary::after {
  content: "+";
  color: #4f3f29;
  font-size: 1.2rem;
  font-weight: 900;
}

.course-player-module[open] summary::after {
  content: "-";
}

.course-player-module summary span {
  display: grid;
  min-width: 0;
}

.course-player-module summary small {
  color: #a47b00;
  font-size: 0.78rem;
  font-weight: 900;
}

.course-player-module summary strong {
  min-width: 0;
  color: #15171d;
  font-size: 0.97rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.course-player-module__lessons {
  display: grid;
  padding-bottom: 0.7rem;
}

.course-player-lesson {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  border-left: 4px solid transparent;
  padding: 0.85rem 1.25rem 0.85rem 1.35rem;
  color: #2b2f3a;
  text-decoration: none;
}

.course-player-lesson:hover,
.course-player-lesson:focus {
  background: rgba(255, 255, 255, 0.72);
  color: #172a52;
}

.course-player-lesson.is-active {
  border-left-color: #dfb52d;
  background: #eaf2fb;
}

.course-player-lesson.is-completed {
  color: #1f536d;
}

.course-player-lesson__state {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d0c5;
  border-radius: 999px;
  background: #f9f8f4;
  color: #55657e;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.course-player-lesson.is-active .course-player-lesson__state {
  border-color: #dfb52d;
  color: #9a7100;
}

.course-player-lesson.is-completed .course-player-lesson__state {
  border-color: #d7edf6;
  background: #dff1f8;
  color: #1f6d8c;
}

.course-player-lesson strong,
.course-player-lesson small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.course-player-lesson strong {
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.25;
}

.course-player-lesson small {
  margin-top: 0.18rem;
  color: #697382;
  font-size: 0.78rem;
}

.course-player__main {
  min-width: 0;
  background: #fffdf9;
}

.course-player__media {
  border-bottom: 1px solid #dedbd4;
  background: #d9d9d6;
}

.course-player__media iframe,
.course-player__media video,
.course-player__media-placeholder {
  width: 100%;
  min-height: clamp(260px, 42vw, 560px);
  display: block;
  border: 0;
  background: #1b1f26;
}

.course-player__media iframe,
.course-player__media video {
  aspect-ratio: 16 / 9;
  height: auto;
}

.course-player__media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fffdf9;
  text-align: center;
}

.course-player__media-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.course-player__media-placeholder span,
.course-player__external-video {
  position: relative;
  z-index: 1;
}

.course-player__external-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fffdf9;
  font-weight: 900;
  text-decoration: none;
}

.course-player__lesson {
  max-width: 980px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 6vw, 4.8rem) calc(2.4rem + 72px);
}

.course-player__lesson-header {
  max-width: 980px;
  padding: clamp(1.4rem, 4vw, 2.6rem) clamp(1.2rem, 6vw, 4.8rem) clamp(1.2rem, 3vw, 1.8rem);
}

.course-player__lesson-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.course-player__lesson-meta span {
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  background: #dce8ff;
  color: #172a52;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-player__lesson-header h2 {
  max-width: 820px;
  margin: 0;
  color: #111318;
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  line-height: 1.12;
}

.course-player-tabs__nav {
  display: flex;
  gap: clamp(1.1rem, 3vw, 2.4rem);
  overflow-x: auto;
  border-bottom: 1px solid #e1ded6;
}

.course-player-tabs__nav button {
  min-height: 48px;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 0.05rem;
  background: transparent;
  color: #36445e;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

.course-player-tabs__nav button.is-active {
  border-bottom-color: #d7ad2d;
  color: #9a7100;
}

.course-player-tabs__panel {
  padding: 1.35rem 0 0;
}

.course-player-tabs__panel[hidden] {
  display: none;
}

.course-player__content {
  max-width: 780px;
  color: #303745;
}

.course-player__content > :first-child {
  margin-top: 0;
}

.course-player__empty {
  max-width: 680px;
  margin: 0;
  color: #647083;
}

.course-player-resources {
  display: grid;
  gap: 0.75rem;
  max-width: 680px;
}

.course-player-resources a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #e3dfd7;
  border-radius: 8px;
  padding: 0.85rem;
  background: #fff;
  color: #172a52;
  text-decoration: none;
}

.course-player-resources a span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f1e2a8;
  color: #6f5300;
  font-weight: 900;
}

.course-player-resources a strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.course-player__actions {
  position: fixed;
  left: 318px;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(170px, auto) minmax(120px, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin-top: 0;
  border-top: 1px solid #e1ded6;
  background: rgba(255, 253, 249, 0.97);
  padding: 0.55rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
}

.course-player__nav-button {
  min-height: 40px;
  border-color: #e1ded6;
  background: #fffdf9;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
}

.course-player__nav-button:last-child {
  justify-self: end;
}

.course-player__nav-button.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.course-player__complete {
  margin: 0;
}

.course-player__complete-button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #d7ad2d;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  background: #d8ad24;
  color: #2a2205;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.course-player__complete-button:hover,
.course-player__complete-button:focus {
  background: #c79a12;
}

.course-player__complete-button:disabled {
  border-color: #d7edf6;
  background: #dff1f8;
  color: #1f6d8c;
  cursor: default;
}

@media (max-width: 1080px) {
  .course-player__topbar {
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  }

  .course-player__progress {
    grid-column: 1 / -1;
  }

  .course-player__layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .course-player__actions {
    left: 280px;
  }
}

@media (max-width: 820px) {
  .course-player__topbar {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-right: 4rem;
  }

  .course-player__back {
    border-right: 0;
    padding-right: 0;
  }

  .course-player__topbar h1 {
    white-space: normal;
  }

  .course-player__menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: clamp(0.9rem, 3vw, 1.5rem);
    transform: translateY(-50%);
  }

  .course-player__layout {
    grid-template-columns: 1fr;
  }

  /* Off-canvas slide-in menu instead of the desktop's static side column. */
  .course-player__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(320px, 86vw);
    height: 100vh;
    overflow: auto;
    border-right: 0;
    box-shadow: 16px 0 34px rgba(15, 17, 22, 0.22);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
  }

  .course-player__sidebar.is-open {
    transform: translateX(0);
  }

  .course-player__sidebar-close {
    display: inline-flex;
  }

  .course-player__sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: block;
    background: rgba(17, 19, 24, 0.45);
  }

  .course-player__sidebar-backdrop[hidden] {
    display: none;
  }

  .course-player__media iframe,
  .course-player__media video,
  .course-player__media-placeholder {
    min-height: 260px;
  }

  .course-player__lesson-header h2 {
    font-size: 1.6rem;
  }

  .course-player__actions {
    left: 0;
  }
}

@media (max-width: 620px) {
  .course-player__topbar {
    padding-inline: 0.9rem;
    padding-right: 3.6rem;
  }

  .course-player__sidebar-heading,
  .course-player-module summary,
  .course-player-lesson {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .course-player__media iframe,
  .course-player__media video,
  .course-player__media-placeholder {
    min-height: 220px;
  }

  .course-player__lesson-header h2 {
    font-size: 1.4rem;
  }

  .course-player__actions {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.4rem;
    padding-inline: 0.75rem;
  }

  /* Prev/next collapse to icon-only (hide the label, keep the aria-hidden arrow)
     so the bar stays one row on narrow phones. */
  .course-player__nav-button span:not([aria-hidden]) {
    display: none;
  }

  .course-player__complete-button span:last-child {
    font-size: 0.76rem;
  }

  .course-player__nav-button {
    min-width: 40px;
    padding: 0.45rem 0.6rem;
  }

  .course-player__complete-button {
    padding: 0.45rem 0.6rem;
  }
}

.entry {
  background: var(--hc10-white);
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.entry-image {
  width: 100%;
  border-radius: var(--hc10-radius);
  margin: 1rem 0;
}

.hc10-modal-lock {
  overflow: hidden;
}

.hc10-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hc10-modal.is-open {
  display: flex;
}

.hc10-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 64, 0.62);
}

.hc10-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: var(--hc10-radius);
  background: var(--hc10-paper);
  box-shadow: 0 24px 80px rgba(16, 32, 64, 0.32);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.hc10-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  background: var(--hc10-white);
  color: var(--hc10-ink);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hc10-lost-password-modal__dialog {
  width: min(520px, 100%);
  background: #fffdf9;
}

.hc10-lost-password-modal__dialog h2 {
  margin: 0 2.8rem 0.45rem 0;
  color: #111827;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.hc10-lost-password-modal__dialog p:not(.hc10-kicker) {
  margin: 0 0 1rem;
  color: #5f6b7a;
}

.hc10-lost-password-form .hc10-account-button,
.hc10-reset-password-form .hc10-account-button,
.hc10-reset-password-modal .hc10-account-button {
  width: 100%;
  justify-content: center;
}

.hc10-checkout {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.hc10-payment-contact {
  width: min(720px, 100%);
  margin-inline: auto;
}

.hc10-payment-contact--page {
  border: 1px solid #e6ded2;
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.45rem);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 45px rgba(70, 56, 35, 0.08);
}

.hc10-payment-contact__header {
  margin: 0 0 1rem;
  padding-right: 44px;
}

.hc10-payment-contact__header h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.hc10-payment-contact__header p:not(.hc10-kicker) {
  margin: 0;
  color: var(--hc10-muted);
}

.hc10-payment-contact__form .wpcf7-form {
  display: grid;
  gap: 1rem;
}

.hc10-payment-contact__form .wpcf7-form p {
  margin: 0;
}

.hc10-payment-contact__form .wpcf7-form br {
  display: none;
}

.hc10-payment-contact__form label {
  display: grid;
  gap: 0.4rem;
  color: var(--hc10-muted);
  font-weight: 700;
}

.hc10-payment-contact__form input,
.hc10-payment-contact__form textarea,
.hc10-payment-contact__form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  padding: 0.72rem;
  color: var(--hc10-ink);
  background: var(--hc10-white);
  font: inherit;
}

.hc10-payment-contact__form input[readonly] {
  background: #f6f3ee;
  color: #4f5d72;
}

.hc10-payment-contact__form textarea {
  min-height: 130px;
}

.hc10-payment-contact__form .wpcf7-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--hc10-radius);
  background: var(--hc10-gold);
  color: var(--hc10-ink);
  font-weight: 900;
  cursor: pointer;
}

.hc10-payment-contact__form .wpcf7-response-output {
  margin: 0;
  border-radius: 8px;
}

.hc10-checkout--page {
  border: 1px solid #e6ded2;
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.45rem);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 45px rgba(70, 56, 35, 0.08);
}

.hc10-checkout--modal {
  width: 100%;
}

.hc10-checkout__header {
  max-width: 680px;
  margin: 0 0 1.2rem;
}

.hc10-checkout--modal .hc10-checkout__header {
  padding-right: 44px;
}

.hc10-checkout__header h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.hc10-checkout__header p:not(.hc10-kicker) {
  margin: 0;
  color: var(--hc10-muted);
}

.hc10-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 1.25rem;
  align-items: start;
}

.hc10-checkout-summary,
.hc10-product-picker {
  border: 1px solid #e6ded2;
  border-radius: var(--hc10-radius);
  background: var(--hc10-white);
  box-shadow: 0 12px 34px rgba(70, 56, 35, 0.07);
}

.hc10-checkout-summary,
.hc10-product-picker {
  padding: 1.2rem;
}

.hc10-checkout-summary {
  position: sticky;
  top: 96px;
}

.hc10-modal .hc10-checkout-summary {
  top: 1rem;
}

.hc10-checkout-summary h3 {
  margin: 0 0 1rem;
}

.hc10-product-picker {
  display: grid;
  gap: 1rem;
}

.hc10-product-picker h2 {
  margin: 0;
  color: #0d1117;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.hc10-checkout-summary dl {
  margin: 0;
}

.hc10-checkout-summary dl > div {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--hc10-line);
  padding: 0.75rem 0;
}

.hc10-checkout-summary dt {
  color: var(--hc10-muted);
  font-weight: 800;
}

.hc10-checkout-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.hc10-checkout-summary__total dd {
  color: var(--hc10-navy);
  font-size: 1.25rem;
}

.hc10-checkout-summary__total span {
  display: block;
  color: var(--hc10-muted);
  font-size: 0.86rem;
}

.hc10-checkout-summary p {
  margin: 1rem 0 0;
  color: var(--hc10-muted);
  font-size: 0.95rem;
}

.hc10-checkout-summary__actions {
  display: grid;
  gap: 0.85rem;
  border-top: 1px solid var(--hc10-line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.hc10-form {
  display: grid;
  gap: 1rem;
}

.hc10-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid #e8dfd3;
  border-radius: var(--hc10-radius);
  margin: 0;
  padding: 1rem;
  background: #fff;
}

.hc10-form legend {
  padding: 0 0.35rem;
  font-weight: 900;
}

.hc10-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--hc10-muted);
  font-weight: 700;
}

.hc10-field--full {
  grid-column: 1 / -1;
}

.hc10-company-fields {
  display: contents;
}

.hc10-company-fields[hidden] {
  display: none;
}

.hc10-form input,
.hc10-form select,
.hc10-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--hc10-line);
  border-radius: var(--hc10-radius);
  padding: 0.72rem;
  color: var(--hc10-ink);
  background: var(--hc10-white);
  font: inherit;
}

.hc10-form input[readonly] {
  background: #f6f3ee;
  color: #4f5d72;
  cursor: not-allowed;
}

.hc10-form select:disabled {
  opacity: 0.64;
}

.hc10-field-note {
  display: block;
  color: #68758a;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.hc10-form textarea,
.hc10-form .hc10-checkbox {
  grid-column: 1 / -1;
}

.hc10-checkbox,
.hc10-form .hc10-checkbox,
.hc10-checkout-summary .hc10-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--hc10-muted);
  font-weight: 700;
}

.hc10-checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 0.35rem;
}

.hc10-company-toggle-row {
  justify-self: start;
  align-items: center;
  border: 1px solid var(--hc10-line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--hc10-paper);
  color: var(--hc10-ink);
}

.hc10-company-toggle-row input {
  margin-top: 0;
}

.hc10-terms a {
  font-weight: 900;
}

.hc10-checkout-account-note {
  margin: -0.3rem 0 0.2rem;
  font-size: 0.85rem;
  color: var(--hc10-muted);
}

.hc10-button--wide {
  width: 100%;
}

.hc10-alert {
  border-left: 4px solid #b42318;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #fff3f1;
}

.hc10-checkout__notice[hidden] {
  display: none;
}

.hc10-checkout.is-processing .hc10-button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.hc10-form input.is-invalid,
.hc10-form select.is-invalid,
.hc10-form textarea.is-invalid,
.hc10-form input[aria-invalid="true"],
.hc10-form select[aria-invalid="true"],
.hc10-form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.13);
}

.hc10-field-error {
  color: #8f1f17;
}

.hc10-checkbox.hc10-field-error {
  border: 1px solid rgba(180, 35, 24, 0.36);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fff7f5;
}

.hc10-checkbox input.is-invalid,
.hc10-checkbox input[aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.hc10-dashboard {
  display: grid;
  gap: 1.2rem;
}

.hc10-table-wrap {
  overflow-x: auto;
}

.hc10-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.hc10-table th,
.hc10-table td {
  border-bottom: 1px solid var(--hc10-line);
  padding: 0.85rem;
  text-align: left;
}

.hc10-dashboard-shell {
  background: #f8f5ef;
}

.hc10-dashboard-shell #wpadminbar {
  min-width: 0;
}

.hc10-account-page {
  min-height: 70vh;
  background: #f8f5ef;
  padding: 1px 0;
}

.hc10-account-menu-lock {
  overflow: hidden;
}

.hc10-account,
.hc10-account-login {
  color: #111827;
}

.hc10-account {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(1280px, calc(100% - 32px));
  min-height: calc(100vh - 180px);
  min-width: 0;
  border: 1px solid #e6ded2;
  border-radius: 8px;
  margin: 1.5rem auto 2.5rem;
  background: #f8f5ef;
  box-shadow: 0 18px 45px rgba(70, 56, 35, 0.07);
  overflow: hidden;
}

.admin-bar .hc10-account {
  min-height: calc(100vh - 212px);
}

.hc10-account svg,
.hc10-account-login svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hc10-account__sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  height: calc(100vh - 76px);
  min-height: 680px;
  border-right: 1px solid #e6ded2;
  background: #f3f0ea;
  padding: 1.35rem 0.9rem;
}

.admin-bar .hc10-account__sidebar {
  top: 108px;
  height: calc(100vh - 108px);
}

.hc10-account-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  border: 0;
  padding: 0;
  background: rgba(17, 24, 39, 0.36);
  cursor: pointer;
}

.hc10-account__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  min-height: 82px;
  padding: 0 0.35rem 1.25rem;
  color: #7a5a00;
  font-size: 1.45rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.hc10-account__brand-logo {
  width: 118px;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.hc10-account__brand-icon {
  display: inline-flex;
  color: #d8ad24;
}

.hc10-account-nav {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
}

.hc10-account-nav--secondary {
  margin-top: auto;
  padding-top: 1rem;
}

.hc10-account-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 50px;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #465a7c;
  font-weight: 800;
  text-decoration: none;
}

.hc10-account-nav a:hover,
.hc10-account-nav a:focus,
.hc10-account-nav a.is-active {
  background: #c9dcff;
  color: #28456f;
}

.hc10-account__main {
  min-width: 0;
}

.hc10-account-topbar {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid #e6ded2;
  background: rgba(251, 250, 247, 0.85);
  padding: 1.3rem clamp(1rem, 3vw, 2rem);
}

.hc10-account-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  border: 1px solid #d8cdbd;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  background: #fffdf9;
  color: #253d66;
  font-weight: 900;
  cursor: pointer;
}

.hc10-account-topbar h1 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.hc10-account-topbar p {
  margin: 0.25rem 0 0;
  color: #44382c;
  font-size: 1.05rem;
}

.hc10-account-user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 0 0 auto;
}

.hc10-account-user__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.2rem 0.55rem 0.2rem 0.2rem;
  color: #111827;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hc10-account-user__button:hover,
.hc10-account-user__button:focus {
  border-color: #d8cdbd;
  background: #fffdf9;
}

.hc10-account-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.hc10-account-user__button > span,
.hc10-account-user__button strong,
.hc10-account-user__button span span {
  display: block;
  min-width: 0;
}

.hc10-account-user__button strong {
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.hc10-account-user__button span span {
  color: #5f6b7a;
  font-size: 0.9rem;
}

.hc10-account-user__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  border: 1px solid #e6ded2;
  border-radius: 8px;
  padding: 0.35rem;
  background: #fffdf9;
  box-shadow: 0 18px 34px rgba(70, 56, 35, 0.13);
}

.hc10-account-user__menu[hidden] {
  display: none;
}

.hc10-account-user__menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 7px;
  padding: 0.72rem 0.8rem;
  color: #253d66;
  font-weight: 800;
  text-decoration: none;
}

.hc10-account-user__menu a:hover,
.hc10-account-user__menu a:focus {
  background: #eef4ff;
}

.hc10-account-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #3b5176;
  text-decoration: none;
}

.hc10-account-bell::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ba2d1a;
}

.hc10-account-content {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
  padding: 1.6rem clamp(1rem, 3vw, 2rem) 2.2rem;
}

.hc10-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

.hc10-account-card,
.hc10-account-panel,
.hc10-account-login__card {
  min-width: 0;
  max-width: 100%;
  border: 1px solid #ebe2d6;
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 12px 34px rgba(70, 56, 35, 0.07);
}

.hc10-account-card,
.hc10-account-panel {
  padding: clamp(1.1rem, 2vw, 1.55rem);
}

.hc10-account-card__footer-link {
  display: inline-flex;
  margin-top: 1rem;
}

.hc10-card-heading,
.hc10-section-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.hc10-card-heading h2,
.hc10-section-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hc10-card-heading--split,
.hc10-section-heading {
  justify-content: space-between;
}

.hc10-heading-icon {
  display: inline-flex;
  color: #b58a00;
}

.hc10-continue {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1.25fr);
  gap: 1.6rem;
  align-items: center;
}

.hc10-continue__media,
.hc10-course-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #192b55, #213f7a);
}

.hc10-continue__media {
  aspect-ratio: 4 / 3;
}

.hc10-continue__media img,
.hc10-course-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hc10-continue__body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.85rem;
  line-height: 1.2;
}

.hc10-continue__body p {
  margin: 0.35rem 0;
}

.hc10-muted {
  color: #68758a;
}

.hc10-type-badge,
.hc10-status-pill,
.hc10-type-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.hc10-type-badge {
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  color: #28334d;
  background: #e8edf7;
}

.hc10-continue__media .hc10-type-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
}

.hc10-type-badge--gold {
  background: #e4ba2d;
  color: #2e2506;
}

.hc10-type-badge--blue {
  background: #d8e5ff;
  color: #223f6d;
}

.hc10-type-badge--mint {
  background: #d8f0e5;
  color: #205240;
}

.hc10-type-badge--rose {
  background: #ffe0df;
  color: #75342f;
}

.hc10-status-pill {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: #eef1f5;
  color: #536074;
}

.hc10-status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}

.hc10-status-pill.is-active {
  background: #d9edf2;
  color: #1c6a61;
}

.hc10-status-pill.is-warning {
  background: #fff0cc;
  color: #8a5f00;
}

.hc10-status-pill.is-error {
  background: #ffe1dc;
  color: #9a3412;
}

.hc10-progress {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.2rem;
}

.hc10-progress__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #3f4758;
  font-size: 0.88rem;
}

.hc10-progress__track {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8ff;
}

.hc10-progress__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #d7ad2d;
}

.hc10-progress--small {
  margin: 0.9rem 0 0;
}

.hc10-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  border: 1px solid #d5aa25;
  border-radius: 8px;
  padding: 0.8rem 1.15rem;
  background: #d8ad24;
  color: #1f1a07;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.hc10-account-button:hover,
.hc10-account-button:focus {
  background: #c79a12;
  color: #1f1a07;
}

.hc10-account-button--ghost {
  border-color: #8c7f6a;
  background: #fffdf9;
  color: #16130f;
}

.hc10-account-button--ghost:hover,
.hc10-account-button--ghost:focus {
  background: #f0eadf;
  color: #16130f;
}

.hc10-account-button--danger {
  border-color: #b83d3d;
  background: #fff7f7;
  color: #8f1f1f;
}

.hc10-account-button--danger:hover,
.hc10-account-button--danger:focus {
  background: #ffe5e5;
  color: #7f1717;
}

.hc10-account-link {
  color: #7a5a00;
  font-weight: 900;
  text-decoration: none;
}

.hc10-inline-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.35rem;
  color: #7a5a00;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.hc10-inline-action:hover,
.hc10-inline-action:focus {
  color: #4f3a00;
  text-decoration: underline;
}

.hc10-subscription-name {
  margin: 0 0 0.6rem;
  color: #2d2a25;
  font-weight: 800;
  line-height: 1.25;
}

.hc10-subscription-price {
  margin: 0 0 1.2rem;
}

.hc10-subscription-price strong {
  color: #765a00;
  font-size: 2.3rem;
  line-height: 1;
}

.hc10-info-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #ece4d9;
  border-radius: 8px;
  margin: 0 0 1.2rem;
  padding: 1rem;
  background: #fbf8f2;
}

.hc10-info-box span,
.hc10-subscription-row span,
.hc10-profile-grid span {
  display: block;
  color: #5f6b7a;
  font-size: 0.86rem;
}

.hc10-info-box strong {
  display: block;
  margin-top: 0.2rem;
}

.hc10-schedule {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.hc10-schedule-date {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 8px;
  background: #d8e5ff;
  color: #0f2a57;
  line-height: 1;
}

.hc10-schedule-date span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hc10-schedule-date strong {
  font-size: 2rem;
}

.hc10-schedule__body {
  min-width: 0;
}

.hc10-schedule__body h3 {
  margin: 0.15rem 0 0.35rem;
  line-height: 1.25;
}

.hc10-schedule__body p {
  margin: 0.2rem 0;
}

.hc10-type-inline {
  color: #7a5a00;
}

.hc10-invoice-list,
.hc10-course-list,
.hc10-subscription-list,
.hc10-profile-grid,
.hc10-mini-details {
  display: grid;
  gap: 0.9rem;
}

.hc10-invoice-row,
.hc10-subscription-row,
.hc10-profile-grid > div {
  border-bottom: 1px solid #eee7de;
  padding-bottom: 0.85rem;
}

.hc10-invoice-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.hc10-invoice-row:last-child,
.hc10-subscription-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hc10-invoice-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 42px;
  border-radius: 6px;
  background: #efede9;
  color: #435b81;
}

.hc10-invoice-row div {
  min-width: 0;
}

.hc10-invoice-row strong,
.hc10-invoice-row span {
  display: block;
}

.hc10-invoice-row span {
  color: #5f6b7a;
  font-size: 0.84rem;
}

.hc10-invoice-row > div:last-child {
  text-align: right;
}

.hc10-account-panel {
  scroll-margin-top: 1rem;
}

.hc10-section-heading {
  margin-bottom: 1rem;
}

.hc10-section-heading .hc10-kicker {
  margin-bottom: 0.25rem;
}

.hc10-course-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(150px, auto);
  gap: 1rem;
  align-items: center;
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 0.9rem;
  background: #fff;
}

.hc10-course-card--exam_prep_package {
  border-left: 4px solid #8fb4ff;
}

.hc10-course-card--simulation {
  border-left: 4px solid #8ecfb0;
}

.hc10-course-card--summer_course {
  border-left: 4px solid #f0a3a0;
}

.hc10-course-card__media {
  aspect-ratio: 4 / 3;
}

.hc10-course-card__body,
.hc10-course-card__actions {
  min-width: 0;
}

.hc10-course-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.hc10-course-card__meta > span:last-child {
  color: #657188;
  font-size: 0.85rem;
  font-weight: 800;
}

.hc10-course-card h3 {
  margin: 0;
  line-height: 1.2;
}

.hc10-course-card p {
  margin: 0.45rem 0 0;
  color: #4b5567;
}

.hc10-course-card__actions {
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  color: #59677d;
  font-size: 0.86rem;
  font-weight: 800;
}

.hc10-mini-details {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 0.9rem 0 0;
}

.hc10-purchase-details,
.hc10-subscription-row__details,
.hc10-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 0.9rem 0 0;
}

.hc10-purchase-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #eee7de;
  padding-top: 0.85rem;
}

.hc10-mini-details div,
.hc10-purchase-details div {
  min-width: 0;
}

.hc10-mini-details dt,
.hc10-purchase-details dt,
.hc10-subscription-row__details dt,
.hc10-detail-list dt {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 800;
}

.hc10-mini-details dd,
.hc10-purchase-details dd,
.hc10-subscription-row__details dd,
.hc10-detail-list dd {
  margin: 0.1rem 0 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hc10-subscription-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 180px auto;
  gap: 1rem;
  align-items: center;
}

.hc10-subscription-row h3 {
  margin: 0.45rem 0 0.1rem;
}

.hc10-subscription-row__actions {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}

.hc10-subscription-row__actions form {
  margin: 0;
}

.hc10-subscription-row__actions .hc10-account-button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
}

.hc10-subscription-row__details,
.hc10-subscription-note {
  grid-column: 1 / -1;
}

.hc10-subscription-note {
  margin: 0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  color: #526070;
  font-size: 0.9rem;
}

.hc10-profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hc10-profile-grid > div {
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.hc10-program-list {
  display: grid;
  gap: 1rem;
}

.hc10-program-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.hc10-program-card h3,
.hc10-program-card p {
  margin: 0.2rem 0;
}

.hc10-account-modal__content {
  display: grid;
  gap: 1rem;
}

.hc10-account-modal__content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
}

.hc10-account-modal__content > p:not(.hc10-kicker) {
  margin: 0;
  color: #4b5567;
}

.hc10-detail-list {
  margin: 0;
}

.hc10-detail-list div {
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 0.85rem;
  background: #fffdf9;
}

.hc10-account-form {
  gap: 1.2rem;
}

.hc10-account-form fieldset {
  border: 1px solid #eee5d8;
  background: #fff;
}

.hc10-profile-avatar {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 0.85rem;
  background: #fffaf2;
}

.hc10-profile-avatar img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.hc10-profile-avatar label {
  color: #111827;
  font-weight: 900;
}

.hc10-profile-avatar input {
  margin-top: 0.45rem;
}

.hc10-profile-avatar p {
  margin: 0.35rem 0 0;
  color: #68758a;
  font-size: 0.9rem;
}

.hc10-profile-actions {
  display: flex;
  justify-content: flex-end;
}

.hc10-alert--success {
  border-left-color: #1f7a54;
  background: #eaf8f0;
}

.hc10-alert--error {
  border-left-color: #b42318;
  background: #fff3f1;
}

.hc10-alert--info {
  border-left-color: #2667a8;
  background: #edf5ff;
}

.hc10-alert--warning {
  border-left-color: #d08a00;
  background: #fff7df;
}

.hc10-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hc10-help-grid article {
  border: 1px solid #eee5d8;
  border-radius: 8px;
  padding: 1.1rem;
  background: #fff;
}

.hc10-help-grid span {
  display: inline-flex;
  color: #b58a00;
}

.hc10-help-grid h3 {
  margin: 0.6rem 0 0.35rem;
}

.hc10-help-grid p {
  margin: 0;
  color: #5f6b7a;
}

.hc10-empty-state {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  border: 1px dashed #d8cdbd;
  border-radius: 8px;
  padding: 1.1rem;
  background: #fffaf2;
}

.hc10-empty-state h3,
.hc10-empty-state p {
  margin: 0;
}

.hc10-empty-state--compact {
  padding: 0.95rem;
}

.hc10-account-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #f8f5ef;
}

.hc10-account-login__card {
  width: min(460px, 100%);
  padding: 2rem;
}

.hc10-account-login__card h2 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  line-height: 1.15;
}

.hc10-account-login__card p:not(.hc10-kicker) {
  color: #5f6b7a;
}

.hc10-auth-page {
  background: #f8f5ef;
  padding: clamp(2rem, 5vw, 4.8rem) 0;
}

.hc10-auth-page__content {
  margin-bottom: 1.5rem;
}

.hc10-auth {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
}

.hc10-auth__intro {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.hc10-auth__intro img {
  width: 92px;
  height: auto;
}

.hc10-auth__intro h1 {
  max-width: 620px;
  margin: 0;
  color: #111827;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.hc10-auth__intro p {
  max-width: 620px;
  margin: 0;
  color: #475569;
  font-size: 1.08rem;
}

.hc10-auth__intro ul {
  display: grid;
  gap: 0.7rem;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hc10-auth__intro li {
  position: relative;
  padding-left: 1.6rem;
  color: #2d3748;
  font-weight: 750;
}

.hc10-auth__intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d8ad24;
}

.hc10-auth__card {
  min-width: 0;
  border: 1px solid #e6ded2;
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fffdf9;
  box-shadow: 0 18px 45px rgba(70, 56, 35, 0.08);
}

.hc10-auth__card h2 {
  margin: 0 0 0.45rem;
  color: #111827;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.hc10-auth__card p {
  color: #5f6b7a;
}

.hc10-auth-form {
  margin-top: 1.15rem;
}

.hc10-auth-form label:not(.hc10-checkbox) {
  color: #344054;
}

.hc10-auth-form__row,
.hc10-auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.hc10-auth-form__row a,
.hc10-auth__switch a {
  color: #7a5a00;
  font-weight: 900;
  text-decoration: none;
}

.hc10-auth-form__row a:hover,
.hc10-auth-form__row a:focus,
.hc10-auth__switch a:hover,
.hc10-auth__switch a:focus {
  text-decoration: underline;
}

.hc10-auth__switch {
  margin: 1.1rem 0 0;
}

.hc10-auth__logged-in {
  display: grid;
  gap: 0.85rem;
}

.hc10-auth__logged-in p,
.hc10-auth__logged-in h2 {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--hc10-line);
  background: #111b33;
  color: var(--hc10-white);
}

.site-footer__inner {
  display: grid;
  gap: 1.5rem;
  padding: 2.2rem 0 1.2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(160px, 0.6fr));
  gap: 1.4rem;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 0.85rem;
  max-width: 360px;
}

.site-footer__logo {
  display: inline-flex;
  width: 86px;
}

.site-footer__logo img {
  width: 86px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer__section h2 {
  margin: 0 0 0.75rem;
  color: #f0d47a;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer__section ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--hc10-white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #f0d47a;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__trust {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.25rem, 1.2vw, 0.85rem);
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 1.1rem;
  overflow: hidden;
}

.site-footer-banner {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0;
  line-height: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-footer-banner:hover,
.site-footer-banner:focus {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-footer-banner img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-footer-banner--netopia img {
  width: clamp(104px, 34vw, 200px);
}

.site-footer-banner--anpc img {
  width: clamp(76px, 23.5vw, 150px);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.site-footer__bottom .copy {
  flex-basis: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.site-footer__bottom .copy a {
  color: #f0d47a;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hc10-account-grid {
    grid-template-columns: 1fr;
  }

  .hc10-account-card--subscription,
  .hc10-account-card--invoices {
    max-width: none;
  }

  .site-footer__trust {
    justify-content: center;
    text-align: center;
  }

}

@media (max-width: 1180px) {
  .hc10-account {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .hc10-account-menu-toggle {
    display: inline-flex;
  }

  .hc10-account__brand {
    justify-content: center;
    padding-bottom: 0.9rem;
  }

  .hc10-account__brand-logo {
    width: 52px;
    max-height: 52px;
    object-position: center;
  }

  .hc10-account-nav a {
    justify-content: center;
    gap: 0;
    padding: 0.8rem;
  }

  .hc10-account-nav span {
    display: none;
  }

  .hc10-account-topbar {
    min-height: auto;
  }

  .hc10-account.is-menu-open .hc10-account-backdrop {
    display: block;
  }

  .hc10-account.is-menu-open .hc10-account__sidebar,
  .admin-bar .hc10-account.is-menu-open .hc10-account__sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 51;
    width: min(310px, calc(100vw - 36px));
    height: 100vh;
    min-height: 0;
    border-right: 1px solid #e6ded2;
    border-bottom: 0;
    padding: 1.2rem 0.9rem;
    overflow-y: auto;
    box-shadow: 18px 0 45px rgba(17, 24, 39, 0.18);
  }

  .admin-bar .hc10-account.is-menu-open .hc10-account__sidebar {
    top: 32px;
    height: calc(100vh - 32px);
  }

  .hc10-account.is-menu-open .hc10-account__brand {
    justify-content: flex-start;
  }

  .hc10-account.is-menu-open .hc10-account__brand-logo {
    width: 118px;
    max-height: 74px;
    object-position: left center;
  }

  .hc10-account.is-menu-open .hc10-account-nav a {
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
  }

  .hc10-account.is-menu-open .hc10-account-nav span {
    display: inline;
  }
}

@media (max-width: 760px) {
  .hc10-account {
    display: block;
    width: min(100% - 24px, 560px);
    min-height: auto;
    margin: 0.8rem auto 2rem;
    overflow: visible;
  }

  .hc10-account__sidebar,
  .admin-bar .hc10-account__sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 51;
    width: min(88vw, 310px);
    height: 100vh;
    min-height: 0;
    border-right: 1px solid #e6ded2;
    border-bottom: 0;
    padding: 1.05rem 0.9rem;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    box-shadow: 18px 0 45px rgba(17, 24, 39, 0.18);
  }

  .hc10-account.is-menu-open .hc10-account__sidebar,
  .admin-bar .hc10-account.is-menu-open .hc10-account__sidebar {
    top: 0;
    height: 100vh;
    transform: translateX(0);
  }

  .hc10-account.is-menu-open .hc10-account-backdrop {
    display: block;
  }

  .hc10-account__brand,
  .hc10-account.is-menu-open .hc10-account__brand {
    justify-content: flex-start;
  }

  .hc10-account__brand-logo,
  .hc10-account.is-menu-open .hc10-account__brand-logo {
    width: 108px;
    max-height: 66px;
    object-position: left center;
  }

  .hc10-account-nav a,
  .hc10-account.is-menu-open .hc10-account-nav a {
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
  }

  .hc10-account-nav span,
  .hc10-account.is-menu-open .hc10-account-nav span {
    display: inline;
  }

  .hc10-account-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
  }

  .hc10-account-topbar h1 {
    font-size: 2rem;
  }

  .hc10-account-topbar > div:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hc10-account-user {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hc10-account-bell {
    display: none;
  }

  .hc10-continue,
  .hc10-schedule,
  .hc10-program-card,
  .hc10-course-card,
  .hc10-subscription-row,
  .hc10-profile-grid,
  .hc10-help-grid {
    grid-template-columns: 1fr;
  }

  .hc10-continue__media,
  .hc10-course-card__media {
    max-width: 360px;
  }

  .hc10-continue__body h3 {
    font-size: 1.55rem;
  }

  .hc10-course-card__actions {
    justify-items: stretch;
  }

  .hc10-subscription-row__actions {
    justify-items: stretch;
  }

  .hc10-course-card__actions .hc10-account-button,
  .hc10-schedule .hc10-account-button,
  .hc10-program-card .hc10-account-button,
  .hc10-subscription-row__actions .hc10-account-button,
  .hc10-account-card--subscription .hc10-account-button {
    width: 100%;
  }

  .hc10-purchase-details {
    grid-template-columns: 1fr;
  }

  .hc10-section-heading,
  .hc10-card-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hc10-account-content,
  .hc10-account-topbar {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hc10-account-card,
  .hc10-account-panel,
  .hc10-account-login__card {
    padding: 1rem;
  }

  .hc10-auth-page {
    padding-top: 1.25rem;
  }

  .hc10-auth {
    width: min(100% - 24px, 520px);
  }

  .hc10-auth__card {
    padding: 1rem;
  }

  .hc10-auth__intro img {
    width: 72px;
  }

  .hc10-auth-form__row,
  .hc10-auth-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hc10-auth-actions .hc10-account-button,
  .hc10-auth-form .hc10-account-button {
    width: 100%;
  }

  .hc10-account__brand {
    font-size: 1.2rem;
    min-height: 68px;
  }

  .hc10-account__brand-logo {
    width: 96px;
    max-height: 58px;
  }

  .hc10-account-user__button {
    padding-right: 0.2rem;
  }

  .hc10-account-user__button > span {
    display: none;
  }

  .hc10-account-user__menu {
    right: -0.2rem;
  }

  .hc10-profile-avatar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hc10-account-nav a {
    gap: 0.55rem;
  }

  .hc10-account-nav span {
    font-size: 0.92rem;
  }

  .hc10-invoice-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .hc10-invoice-row > div:last-child {
    grid-column: 2;
    text-align: left;
  }

  .hc10-profile-actions .hc10-account-button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: min(760px, calc(100svh - 72px));
    padding: 4.4rem 0 3.4rem;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 28, 52, 0.92) 0%, rgba(9, 28, 52, 0.76) 46%, rgba(9, 28, 52, 0.82) 100%),
      linear-gradient(90deg, rgba(9, 28, 52, 0.38) 0%, rgba(9, 28, 52, 0.08) 100%);
  }

  .home-hero__grid,
  .home-story,
  .home-story--reverse,
  .home-dark-band__grid,
  .home-professor__card {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    min-height: min(650px, calc(100svh - 160px));
    align-items: center;
    gap: 1.5rem;
  }

  .home-story--reverse .home-story__copy,
  .home-story--reverse .home-story__media {
    order: initial;
  }

  .home-hero__copy {
    text-align: center;
  }

  .home-pill,
  .home-hero__text,
  .home-hero .hero-actions {
    margin-inline: auto;
  }

  .home-hero .hero-actions {
    justify-content: center;
  }

  .home-hero__visual {
    inset: 0;
    width: auto;
    margin: 0;
  }

  .home-hero__visual img {
    object-position: center;
  }

  .home-hero__points {
    margin-inline: auto;
  }

  .home-hero__stat {
    justify-self: center;
    width: min(100%, 420px);
  }

  .home-benefits__grid,
  .home-course-grid,
  .home-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-dark-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .home-dark-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 2rem;
    padding-top: 3.4rem;
  }

  .product-hero h1 {
    font-size: 2.65rem;
  }

  .product-sales-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.4rem;
  }

  .product-feature-grid,
  .product-testimonial-grid,
  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-program-grid {
    grid-template-columns: 1fr;
  }

  .product-summary--sales {
    top: 132px;
  }
}

@media (max-width: 860px) {
  body.site-nav-lock {
    overflow: hidden;
  }

  .site-header {
    z-index: 80;
  }

  .site-header__actions {
    position: relative;
    z-index: 100;
    margin-left: auto;
  }

  .site-header__actions .site-nav-account--mobile {
    position: relative;
    display: flex;
    order: 1;
  }

  .site-header-call {
    width: 44px;
    justify-content: center;
    order: 0;
    padding: 0;
  }

  .site-header-call__label {
    display: none;
  }

  .site-header__actions .site-account-login-entry {
    order: 1;
    min-height: 44px;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.38rem 0.68rem 0.38rem 0.42rem;
  }

  .site-account-login-entry__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .site-account-login-entry__icon svg {
    width: 22px;
    height: 22px;
  }

  .site-account-login-entry strong {
    display: none;
  }

  .site-account-login-entry small {
    font-size: 0.72rem;
  }

  .site-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 100;
    order: 2;
    box-shadow: 0 10px 22px rgba(16, 32, 64, 0.1);
  }

  .site-nav-toggle:hover,
  .site-nav-toggle:focus {
    border-color: rgba(24, 44, 85, 0.26);
    background: #f4f7fb;
  }

  .site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(9, 28, 52, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .site-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav-backdrop[hidden] {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 90;
    display: block;
    width: min(86vw, 360px);
    max-width: 360px;
    border: 0;
    border-left: 1px solid rgba(24, 44, 85, 0.12);
    border-radius: 0;
    padding: 5.6rem 1rem 1.4rem;
    background: var(--hc10-white);
    box-shadow: -24px 0 50px rgba(16, 32, 64, 0.18);
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    visibility: hidden;
  }

  .site-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .admin-bar .site-nav {
    top: 46px;
  }

  .site-nav .site-nav-account {
    display: none;
  }

  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav__list a {
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
    padding: 0.68rem 0.85rem;
    font-size: 1rem;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus {
    background: #f3f6fb;
  }

  .site-nav__list .menu-item-has-children > a {
    justify-content: space-between;
  }

  .site-nav__list .sub-menu {
    position: static;
    min-width: 0;
    margin: 0.25rem 0 0;
    padding: 0.35rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 1px solid var(--hc10-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .site-nav__list .sub-menu a {
    white-space: normal;
  }

  .site-nav-account--mobile .site-account-menu {
    top: calc(100% + 0.55rem);
    right: 0;
    left: auto;
    min-width: 174px;
  }

  .site-nav-account--mobile .site-account-menu::before {
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(24, 44, 85, 0.12);
    border-left: 1px solid rgba(24, 44, 85, 0.12);
    background: var(--hc10-white);
    content: "";
    transform: rotate(45deg);
  }

  .home-hero {
    min-height: min(740px, calc(100svh - 70px));
  }

  .home-hero__grid,
  .home-story,
  .home-story--reverse,
  .home-professor__card,
  .hc10-auth,
  .product-detail__header,
  .product-detail__body,
  .product-hero,
  .product-sales-layout,
  .hc10-checkout__layout,
  .about-intro,
  .contact-hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .article-sidebar {
    position: static;
  }

  .contact-hero__copy {
    max-width: none;
  }

  .contact-hero__image {
    aspect-ratio: 16 / 9;
  }

  .feature-grid,
  .product-grid,
  .hc10-product-list,
  .product-feature-grid,
  .product-program-grid,
  .product-testimonial-grid,
  .product-related-grid,
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-summary {
    position: static;
  }

  .product-hero {
    padding-top: 3rem;
  }

  .product-hero h1 {
    font-size: 2.65rem;
  }

  .product-sales-nav {
    position: static;
  }

  .product-sales-layout {
    padding-top: 1.4rem;
  }

  .hc10-auth {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hc10-checkout-summary {
    position: static;
  }

  .hc10-modal {
    align-items: flex-start;
    padding: 16px;
  }

  .hc10-modal__dialog {
    max-height: calc(100vh - 32px);
  }

  .article-visual {
    aspect-ratio: 16 / 9;
  }

  .course-module summary,
  .course-lesson__summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .course-module summary strong,
  .course-lesson__status {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 1120px) {
  body.site-nav-lock {
    overflow: hidden;
  }

  .site-header {
    z-index: 80;
    background: rgba(251, 250, 247, 0.98);
    backdrop-filter: none;
  }

  .site-header__actions {
    position: relative;
    z-index: 100;
    margin-left: auto;
  }

  .site-header__actions .site-nav-account--mobile {
    position: relative;
    display: flex;
    order: 1;
  }

  .site-header-call {
    width: 44px;
    justify-content: center;
    order: 0;
    padding: 0;
  }

  .site-header-call__label {
    display: none;
  }

  .site-header__actions .site-account-login-entry {
    order: 1;
    min-height: 44px;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.38rem 0.68rem 0.38rem 0.42rem;
  }

  .site-account-login-entry__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .site-account-login-entry__icon svg {
    width: 22px;
    height: 22px;
  }

  .site-account-login-entry strong {
    display: none;
  }

  .site-account-login-entry small {
    font-size: 0.72rem;
  }

  .site-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 100;
    order: 2;
    box-shadow: 0 10px 22px rgba(16, 32, 64, 0.1);
  }

  .site-nav-toggle:hover,
  .site-nav-toggle:focus {
    border-color: rgba(24, 44, 85, 0.26);
    background: #f4f7fb;
  }

  .site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(9, 28, 52, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .site-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav-backdrop[hidden] {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 90;
    display: block;
    width: min(86vw, 380px);
    max-width: 380px;
    border: 0;
    border-left: 1px solid rgba(24, 44, 85, 0.12);
    border-radius: 0;
    padding: 5.6rem 1rem 1.4rem;
    background: var(--hc10-white);
    box-shadow: -24px 0 50px rgba(16, 32, 64, 0.18);
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    visibility: hidden;
  }

  .site-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .admin-bar .site-nav {
    top: 32px;
  }

  .site-nav .site-nav-account {
    display: none;
  }

  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav__list a {
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
    padding: 0.68rem 0.85rem;
    font-size: 1rem;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus {
    background: #f3f6fb;
  }

  .site-nav__list .menu-item-has-children > a {
    justify-content: space-between;
  }

  .site-nav__list .sub-menu {
    position: static;
    min-width: 0;
    margin: 0.25rem 0 0;
    padding: 0.35rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 1px solid var(--hc10-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .site-nav__list .sub-menu a {
    white-space: normal;
  }

  .site-nav-account--mobile .site-account-menu {
    top: calc(100% + 0.55rem);
    right: 0;
    left: auto;
    min-width: 174px;
  }

  .site-nav-account--mobile .site-account-menu::before {
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(24, 44, 85, 0.12);
    border-left: 1px solid rgba(24, 44, 85, 0.12);
    background: var(--hc10-white);
    content: "";
    transform: rotate(45deg);
  }
}

@media (max-width: 782px) {
  .admin-bar .site-nav {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .site-whatsapp-float {
    right: 14px;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }

  .site-whatsapp-float__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .site-whatsapp-float__label {
    display: none;
  }

  body.single-hc10_product .site-whatsapp-float {
    bottom: calc(5.7rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .site-header__actions .site-account-login-entry {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .site-account-login-entry__text {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-brand img {
    width: 66px;
  }

  .home-shell {
    width: min(100% - 24px, 560px);
  }

  .home-hero {
    min-height: min(820px, calc(100svh - 66px));
    padding: 3rem 0 2.4rem;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 28, 52, 0.92) 0%, rgba(9, 28, 52, 0.82) 42%, rgba(9, 28, 52, 0.92) 100%),
      linear-gradient(90deg, rgba(9, 28, 52, 0.3) 0%, rgba(9, 28, 52, 0.08) 100%);
  }

  .home-hero__grid {
    min-height: 0;
    gap: 1.1rem;
  }

  .home-hero h1 {
    font-size: 2.36rem;
    line-height: 1.02;
  }

  .home-hero__text {
    font-size: 1rem;
  }

  .home-hero__seo {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .home-hero .hero-actions {
    width: 100%;
  }

  .home-hero .button {
    width: 100%;
  }

  .home-hero__points {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1rem;
    text-align: left;
  }

  .home-hero__points li {
    border-left-width: 3px;
  }

  .home-hero__visual img {
    object-position: 58% center;
  }

  .home-hero__stat {
    margin-top: 0.75rem;
    max-width: none;
  }

  .home-benefits {
    padding-bottom: 3rem;
  }

  .home-benefits--raised {
    margin-top: -1.35rem;
  }

  .home-benefits__grid,
  .home-course-grid,
  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-courses,
  .home-stories,
  .home-professor,
  .home-testimonials {
    padding: 3.2rem 0;
  }

  .home-quote {
    padding: 2.8rem 0;
  }

  .home-quote blockquote {
    font-size: 1.05rem;
  }

  .home-section-heading h2 {
    font-size: 1.75rem;
  }

  .home-stories .home-shell {
    gap: 3rem;
  }

  .home-story {
    gap: 1.6rem;
  }

  .home-story h2,
  .home-dark-card h2 {
    font-size: 1.45rem;
  }

  .home-course-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .home-course-card__footer .button {
    width: 100%;
  }

  .home-professor__card {
    justify-items: center;
    padding: 1.2rem;
    text-align: center;
  }

  .home-professor__card img {
    width: 150px;
    height: 150px;
  }

  .course-listing {
    padding: 3rem 0 3.6rem;
  }

  .course-listing__inner {
    width: min(100% - 24px, 560px);
  }

  .course-listing__hero {
    margin-bottom: 1.7rem;
  }

  .course-listing__hero h1 {
    font-size: 2.15rem;
  }

  .course-listing__hero p:not(.course-listing__eyebrow) {
    font-size: 1rem;
  }

  .course-filter--listing {
    gap: 0.55rem;
    margin-bottom: 1.8rem;
  }

  .course-filter--listing a {
    min-height: 32px;
    padding: 0.42rem 0.8rem;
    font-size: 0.82rem;
  }

  .course-listing__grid {
    grid-template-columns: 1fr;
  }

  .course-list-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .course-list-card__button {
    width: 100%;
  }

  .course-listing__pagination {
    margin-top: 2rem;
  }

  .course-listing__pagination .nav-links {
    width: 100%;
    gap: 0.45rem;
  }

  .course-listing__pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 0.45rem;
    font-size: 0.9rem;
  }

  .course-listing__pagination .page-numbers.prev,
  .course-listing__pagination .page-numbers.next {
    flex: 1 1 126px;
    padding: 0 0.8rem;
  }

  .feature-grid,
  .product-grid,
  .hc10-product-list,
  .product-hero__stats,
  .product-feature-grid,
  .product-program-grid,
  .product-testimonial-grid,
  .product-related-grid,
  .about-values__grid,
  .contact-form-card .hc10-cf7-grid,
  .hc10-form fieldset {
    grid-template-columns: 1fr;
  }

  .product-detail--sales .product-hero,
  .product-detail--sales .product-sales-nav,
  .product-detail--sales .product-sales-layout {
    width: min(100% - 24px, 560px);
  }

  .product-hero {
    gap: 1.5rem;
    padding: 2.4rem 0 1.4rem;
  }

  .product-hero h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .product-hero__subtitle,
  .product-rich-text {
    font-size: 1rem;
  }

  .product-hero__actions,
  .product-hero__actions .button,
  .product-summary .button {
    width: 100%;
  }

  .product-section {
    padding: 2.2rem 0;
  }

  .product-feature-panel,
  .product-program-card,
  .product-testimonial,
  .product-summary__box {
    padding: 1rem;
  }

  .product-step {
    grid-template-columns: 2.3rem minmax(0, 1fr);
  }

  .product-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    border-top: 1px solid var(--hc10-line);
    background: rgba(255, 255, 255, 0.96);
    padding: 0.75rem 12px calc(0.75rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 28px rgba(16, 32, 64, 0.14);
    backdrop-filter: blur(14px);
  }

  .product-mobile-cta span {
    display: grid;
    min-width: 0;
  }

  .product-mobile-cta small {
    overflow: hidden;
    color: var(--hc10-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .product-mobile-cta strong {
    overflow: hidden;
    color: var(--hc10-navy);
    font-size: 0.95rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-mobile-cta .button {
    width: auto;
    min-height: 44px;
    padding-inline: 1rem;
    white-space: nowrap;
  }

  .product-detail--sales {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  }

  .about-page {
    padding-top: 2.2rem;
  }

  .about-story {
    min-height: auto;
  }

  .about-professor__image {
    aspect-ratio: 4 / 3;
  }

  .about-value-card {
    min-height: auto;
  }

  .contact-page {
    padding-top: 2.2rem;
  }

  .contact-panel,
  .contact-form-card,
  .contact-expert {
    padding: 1.1rem;
  }

  .contact-expert {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-expert img {
    width: 112px;
    height: 112px;
  }

  .contact-form-card .wpcf7-submit,
  .contact-form-card .hc10-cf7-submit {
    width: 100%;
  }

  .hc10-modal {
    padding: 10px;
  }

  .hc10-modal__dialog {
    max-height: calc(100vh - 20px);
    padding: 1rem;
  }

  .hc10-checkout-summary dl > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hc10-checkout-summary dd {
    text-align: left;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-page,
  .article-page {
    padding-top: 2.2rem;
  }

  .blog-hero {
    margin-bottom: 2rem;
  }

  .blog-card__body,
  .blog-newsletter,
  .blog-popular,
  .article-cta,
  .article-share,
  .article-author,
  .article-toc {
    padding: 1.1rem;
  }

  .article-author {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-author__avatar {
    margin-inline: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    max-width: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    flex-wrap: inherit;
  }

  .course-content__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .course-content__actions .button {
    width: 100%;
  }
}
