@font-face {
  font-family: Hub;
  src: url("../fonts/helvetica-neue-lt-geo-55-roman.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: HubCaps;
  src: url("../fonts/helvetica-neue-lt-geo-75-bold-caps.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --blue: #123b8c;
  --dark: #0a2457;
  --bright: #2859bd;
  --yellow: #ffda45;
  --ink: #182c4d;
  --muted: #62718a;
  --line: #dce3ed;
  --surface: #f2f6fc;
  --radius: 18px;
  --width: 1240px;
  --shadow: 0 14px 45px #143b8c0d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font:
    400 16px/1.7 Hub,
    Arial,
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
p a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
.icon {
  flex: none;
  object-fit: contain;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: HubCaps, Hub, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(32px, 3.35vw, 48px);
  letter-spacing: -0.7px;
}
h2 {
  font-size: clamp(25px, 2.5vw, 34px);
}
h3 {
  font-size: 20px;
}
p {
  margin: 0 0 20px;
}
em {
  font-style: normal;
}
fieldset {
  min-width: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 4px;
}
::selection {
  background: var(--yellow);
  color: var(--dark);
}
.container {
  width: min(var(--width), calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding-block: 74px;
}
.top-tight {
  padding-top: 16px;
}
.narrow {
  max-width: 820px;
}
.eyebrow {
  color: var(--blue);
  font:
    700 12px/1.6 HubCaps,
    Arial,
    sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: #c2d6fc;
}
.lead {
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
}
.fine-print,
.meta {
  font-size: 13px;
  color: var(--muted);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  max-width: 100%;
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--dark);
  border: 1px solid var(--yellow);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #ffe675;
  transform: translateY(-2px);
}
.button.secondary {
  background: white;
  color: var(--blue);
  border-color: #c4d1e7;
}
.button.secondary:hover {
  background: #eaf1fc;
}
.button.small {
  font-size: 14px;
  min-height: 44px;
  padding: 11px 17px;
}
.text-link {
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
  display: inline-block;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 12px;
  font-size: 14px;
}
.round-link,
.notification-link,
.icon-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  align-items: center;
  justify-content: center;
  flex: none;
}
.round-link:hover {
  background: var(--yellow);
}
.badge {
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px;
  background: #e9f1fc;
  color: var(--blue);
  border-radius: 5px;
  max-width: 100%;
}
.badge.gold {
  background: #fff3bf;
  color: #65500a;
}
.badge.error {
  background: #ffe9e9;
  color: #8f2727;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags li {
  background: var(--surface);
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
}
.icon-tile {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: #e9f0fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.soft-section {
  background: var(--surface);
}
.soft-panel {
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-top: 30px;
}
.soft-panel h2 {
  font-size: 23px;
}
.notice {
  background: #fff8df;
  border-left: 3px solid #dfb730;
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 0 8px 8px 0;
}
.notice.subtle {
  background: #eef4ff;
  border-color: var(--bright);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: white;
  padding: 15px;
  z-index: 100;
  border: 2px solid var(--blue);
}
.skip-link:focus {
  top: 15px;
}
[hidden] {
  display: none !important;
}
/* Shared navigation */
.utility-bar {
  background: var(--dark);
  color: #d1def3;
  font-size: 12px;
  padding: 8px 0;
}
.utility-bar > .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.utility-bar ul {
  display: flex;
  gap: 26px;
}
.utility-bar a:hover {
  color: var(--yellow);
}
.site-header {
  background: white;
  border-bottom: 1px solid #e5eaf2;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 50px;
  min-height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: HubCaps, Hub, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--dark);
}
.brand img {
  flex: none;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.nav-list > li > a {
  padding-block: 30px;
  display: block;
}
.nav-list a:hover,
nav a[aria-current="page"] {
  color: var(--bright);
}
.nav-dropdown details {
  position: relative;
}
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-block: 8px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  white-space: nowrap;
}
.nav-dropdown summary:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../svg/chevron-down.svg") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.nav-dropdown details > ul {
  position: absolute;
  top: 44px;
  left: -20px;
  width: 235px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 12px;
}
.nav-dropdown li a:hover {
  background: var(--surface);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  white-space: nowrap;
}
.login-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.member-link {
  display: none;
  color: var(--blue);
  font-size: 14px;
}
.is-member .login-link,
.is-member .join-link {
  display: none;
}
.is-member .member-link {
  display: block;
}
.mobile-menu-item {
  display: none;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
/* Homepage and shared cards */
.home-hero {
  background: var(--blue);
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 65px;
  padding-block: 70px 74px;
}
.hero-copy h1 {
  font-size: clamp(34px, 3.2vw, 47px);
  line-height: 1.4;
  color: white;
  letter-spacing: -0.8px;
}
.hero-copy h1 em {
  color: var(--yellow);
}
.hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.9;
  color: #dbe5fa;
  max-width: 550px;
}
.yellow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero-text-link {
  color: white;
  font-size: 14px;
  border-bottom: 1px solid #a6bde5;
  padding-bottom: 5px;
}
.hero-facts {
  display: flex;
  gap: 25px;
  margin-top: 35px;
  font-size: 13px;
  color: #dbe5fa;
}
.hero-facts li:before {
  content: "✓";
  margin-right: 8px;
  color: var(--yellow);
}
.hero-visual {
  position: relative;
  padding-bottom: 20px;
  min-width: 0;
}
.hero-photo {
  width: 100%;
  height: 455px;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 26px 26px 80px 26px;
}
.hero-caption {
  position: absolute;
  bottom: 0;
  left: -28px;
  background: white;
  color: var(--dark);
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 26px;
  border-radius: 13px;
  box-shadow: 0 12px 35px #051a4422;
}
.hero-caption img {
  background: #eaf1ff;
  box-sizing: content-box;
  padding: 12px;
  border-radius: 12px;
}
.hero-caption strong,
.hero-caption span {
  display: block;
}
.hero-caption strong {
  font-size: 16px;
  margin-bottom: 3px;
}
.hero-caption span {
  font-size: 13px;
  color: var(--muted);
}
.image-credit {
  position: absolute;
  right: 32px;
  bottom: 34px;
  font-size: 10px;
  color: white;
  text-shadow: 0 1px 4px #000;
}
.benefit-strip {
  background-color: #eaf1fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-block: 29px;
}
.benefit-strip li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading .eyebrow {
  margin-bottom: 9px;
}
.section-heading > .text-link {
  white-space: nowrap;
}
.card-grid {
  display: grid;
  gap: 25px;
}
.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.course-card,
.news-card,
.trainer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  min-width: 0;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.course-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.course-art {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 25px;
  min-height: 215px;
  overflow: hidden;
}
.art-0 {
  background: #e7efff;
}
.art-1 {
  background: #fff0b4;
}
.art-2 {
  background: #d8e8f7;
}
.art-3 {
  background: #ebe8f9;
}
.course-art > .icon {
  position: absolute;
  right: 35px;
  bottom: 32px;
  width: 65px;
  height: 65px;
  opacity: 0.85;
}
.art-label {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--blue);
  font-family: HubCaps, sans-serif;
}
.art-number {
  font-family: Arial, sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #123b8c17;
  line-height: 1;
}
.card-body {
  padding: 25px;
}
.card-body .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
}
.card-body h3 {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-body h3 a:hover {
  color: var(--bright);
}
.card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #edf0f5;
  padding-top: 18px;
  margin-top: 24px;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-split h2 {
  font-size: 36px;
}
.feature-stack li {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid #dce5f1;
  padding: 22px 0;
}
.feature-stack li:first-child {
  padding-top: 0;
}
.feature-stack li:last-child {
  border: 0;
  padding-bottom: 0;
}
.feature-stack li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font: 700 15px Arial;
  flex: none;
}
.feature-stack h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.feature-stack p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.event-list {
  display: grid;
  gap: 15px;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.event-date {
  background: var(--surface);
  min-width: 86px;
  min-height: 86px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--blue);
  font-size: 13px;
}
.event-card h3 {
  margin: 7px 0;
  font-size: 20px;
}
.event-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.event-card > .round-link {
  margin-left: auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  border: 1px solid #d4deed;
  padding: 38px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: white;
  align-items: flex-start;
}
.price-card > p:not(.price):not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.price-card h2 {
  font-size: 27px;
  min-height: 76px;
}
.price {
  font-family: Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin: 12px 0 22px;
}
.price span {
  font-family: Hub, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}
.check-list {
  width: 100%;
  margin: 15px 0 28px;
}
.check-list li {
  padding: 10px 0 10px 27px;
  background: url("../svg/check.svg") left 15px/16px no-repeat;
  font-size: 15px;
}
.price-card > .button {
  width: 100%;
  margin-top: auto;
}
.price-card .fine-print {
  margin: 16px 0 0;
  font-size: 12px;
}
.price-card.featured {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.featured .eyebrow {
  color: #b9d0fc;
}
.featured .price {
  color: white;
}
.featured .price span,
.featured > p:not(.price):not(.eyebrow) {
  color: #d8e5fc;
}
.featured .check-list li {
  background-image: url("../svg/check-light.svg");
}
.ribbon {
  position: absolute;
  right: 25px;
  top: -13px;
  background: var(--yellow);
  padding: 6px 15px;
  border-radius: 5px;
  color: var(--dark);
  font-size: 12px;
}
.academy-teaser {
  background: var(--yellow);
  margin-block: 36px;
}
.academy-teaser > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.academy-teaser h2 {
  font-size: 46px;
}
.academy-teaser p:not(.eyebrow) {
  max-width: 480px;
}
.academy-teaser .button {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.academy-teaser .button img {
  filter: brightness(0) invert(1);
}
.academy-type {
  border-left: 1px solid #14345d30;
  padding-left: 70px;
}
.academy-type > span {
  font-size: 20px;
}
.academy-type strong {
  display: block;
  font-family: HubCaps, sans-serif;
  font-size: 65px;
  line-height: 1.3;
  margin: 18px 0 30px;
}
.academy-type a {
  font-size: 14px;
  border-bottom: 1px solid;
}
.profile-art {
  background: #e7edf6;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.profile-art img {
  opacity: 0.45;
}
.profile-1 {
  background: #eef0e6;
}
.profile-2 {
  background: #e6edf1;
}
.profile-3 {
  background: #eee9e1;
}
.trainer-card .eyebrow {
  font-size: 11px;
}
.news-art {
  min-height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-art img {
  opacity: 0.8;
}
.news-card > .card-body > .meta {
  display: block;
}
.faq-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 35px;
  font-size: 17px;
  font-weight: 700;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  font: 24px Arial;
  color: var(--blue);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.join-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  background: var(--dark);
  border-radius: 24px;
  padding: 52px 58px;
  color: white;
}
.join-banner h2 {
  font-size: 35px;
}
.join-banner .eyebrow {
  color: #b9d0fc;
}
.join-banner p:not(.eyebrow) {
  color: #ccdaf2;
  margin-bottom: 0;
}
.join-banner > .button {
  flex-shrink: 0;
}
/* Public detail pages and forms */
.breadcrumbs {
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumbs ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.breadcrumbs li + li:before {
  content: "/";
  margin-right: 12px;
  color: #99a4b6;
}
.page-intro {
  padding-block: 54px 42px;
}
.page-intro h1 {
  max-width: 1000px;
}
.page-intro > .lead {
  margin-bottom: 0;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border-radius: 12px;
  margin-bottom: 30px;
  align-items: center;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #d5deec;
  border-radius: 7px;
  padding-left: 14px;
  flex: 1;
  min-width: 200px;
}
.search-field input {
  border: 0 !important;
  background: transparent !important;
}
.filter-bar select {
  min-height: 48px;
  max-width: 230px;
}
.empty-state {
  padding: 50px 30px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--muted);
  margin-top: 25px;
}
.empty-state > img {
  margin: 0 auto 20px;
}
.empty-state h2 {
  font-size: 24px;
  color: var(--ink);
}
.resource-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.resource-card > img {
  margin-bottom: 20px;
}
.resource-card .meta {
  margin-bottom: 13px;
}
.resource-card h2 {
  font-size: 24px;
}
.resource-card p {
  font-size: 15px;
  color: var(--muted);
}
.resource-card > .text-link {
  margin-top: auto;
}
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.editorial-photo {
  width: 100%;
  height: 445px;
  object-fit: cover;
  object-position: 55%;
  border-radius: 20px;
}
.editorial-split p {
  color: var(--muted);
}
.profile-hero {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 65px;
  align-items: center;
}
.profile-hero > .profile-art {
  border-radius: 20px;
  min-height: 390px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
th,
td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
thead {
  background: var(--surface);
  color: var(--blue);
}
thead th {
  font-size: 13px;
}
tbody th {
  font-weight: 400;
}
tbody tr:last-child > * {
  border-bottom: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.steps li {
  border-top: 2px solid var(--line);
  padding-top: 25px;
}
.steps li > span {
  font: 700 30px Arial;
  color: var(--blue);
  display: block;
  margin-bottom: 20px;
}
.steps p {
  font-size: 15px;
  color: var(--muted);
}
.steps.vertical {
  grid-template-columns: 1fr;
  gap: 12px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 65px;
  align-items: start;
}
.detail-grid h1 {
  font-size: 40px;
}
.detail-grid .badge {
  margin-bottom: 22px;
}
.detail-grid article h2,
.detail-grid > div > h2 {
  font-size: 26px;
  margin-top: 34px;
}
.detail-grid p {
  color: var(--muted);
}
.purchase-panel {
  position: sticky;
  top: 125px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.purchase-panel h2 {
  font-size: 24px;
  margin: 0;
}
.purchase-panel p {
  font-size: 15px;
  margin: 0;
}
.purchase-panel > .button {
  width: 100%;
}
.purchase-panel .fine-print {
  font-size: 12px;
}
.panel-facts {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 8px;
}
.panel-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 8px 0;
}
.inline-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin: 24px 0;
}
.inline-meta li + li:before {
  content: "•";
  margin-right: 20px;
}
.course-detail-art {
  background: #e8effc;
  padding: 40px;
  border-radius: 18px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--blue);
  font:
    700 26px/1.5 HubCaps,
    sans-serif;
  margin-bottom: 35px;
}
.course-detail-art > span {
  max-width: 220px;
}
.prose {
  font-size: 17px;
  line-height: 1.9;
}
.prose h2 {
  font-size: 27px;
  margin-top: 36px;
}
.prose h3 {
  margin-top: 28px;
}
.prose p {
  color: var(--muted);
}
.prose ul {
  margin-block: 20px;
}
.prose .button {
  margin-top: 20px;
}
.numbered-list {
  counter-reset: items;
}
.numbered-list li {
  counter-increment: items;
  padding: 12px 0 12px 35px;
  position: relative;
}
.numbered-list li:before {
  content: counter(items) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--blue);
}
.document-preview {
  border: 1px solid var(--line);
  background: #fcfdff;
  padding: 35px;
  border-radius: 14px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}
.document-preview span {
  font-size: 14px;
  color: var(--muted);
}
.document-preview hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 14px 0 28px;
}
.article-note {
  color: var(--blue) !important;
  font-size: 13px;
}
.prose blockquote {
  margin: 35px 0;
  padding: 25px 30px;
  border-left: 4px solid var(--yellow);
  background: var(--surface);
  font-size: 22px;
  color: var(--blue);
}
.academy-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
  font-size: 14px;
}
.academy-hero {
  background: var(--surface);
}
.academy-hero > .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding-block: 65px;
}
.academy-hero h1 {
  font-size: 52px;
}
.academy-hero h1 em {
  color: var(--bright);
}
.academy-poster {
  padding: 42px;
  background: var(--blue);
  color: white;
  border-radius: 18px 70px 18px 18px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.academy-poster > span {
  font-size: 15px;
  color: #c4d6f5;
}
.academy-poster strong {
  font-family: HubCaps, sans-serif;
  font-size: 57px;
  line-height: 1.3;
  color: var(--yellow);
  margin: 30px 0;
}
.academy-poster p {
  font-size: 13px;
  margin-top: auto;
  margin-bottom: 0;
}
.academy-card {
  display: flex;
  gap: 25px;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 18px;
  background: white;
  min-width: 0;
}
.big-number {
  font:
    700 37px Arial,
    sans-serif;
  color: #98afd6;
  line-height: 1;
  flex: none;
}
.academy-card h3 {
  font-size: 24px;
}
.academy-card .eyebrow {
  font-size: 11px;
}
.academy-card p {
  font-size: 15px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: start;
}
.contact-facts {
  margin: 35px 0;
}
.contact-facts li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-facts li img {
  margin-top: 5px;
}
.contact-facts strong {
  display: block;
  margin-bottom: 7px;
}
.contact-facts p {
  font-size: 14px;
  margin: 0;
  color: var(--muted);
}
.form-panel {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: white;
}
.form-panel > h2 {
  font-size: 25px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-demo {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 14px;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 1px solid #cad5e5;
  border-radius: 7px;
  color: var(--ink);
  min-height: 48px;
  min-width: 0;
  line-height: 1.5;
}
textarea {
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 4px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  line-height: 1.8;
}
.checkbox a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form > .button {
  margin-top: 5px;
  align-self: flex-start;
}
.form-status {
  background: #e8f1ff;
  border: 1px solid #c6d8f5;
  color: var(--blue) !important;
  font-size: 14px;
  padding: 16px;
  border-radius: 8px;
  margin: 10px 0;
}
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  align-items: center;
}
.form-row a {
  color: var(--blue);
}
.plan-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 8px;
  margin: 6px 0 15px;
}
.plan-options legend {
  font-size: 14px;
  padding-inline: 5px;
}
.plan-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 70px;
  align-items: start;
  max-width: 1150px;
}
.auth-story {
  background: var(--blue);
  color: white;
  border-radius: 24px;
  padding: 48px;
  min-height: 555px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 125px;
}
.auth-story h2 {
  font-size: 45px;
  color: var(--yellow);
  margin-top: 35px;
}
.auth-story > p:not(.eyebrow) {
  color: #ceddfa;
}
.auth-story ul {
  margin-top: auto;
  padding-top: 35px;
}
.auth-story li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-top: 16px;
}
.auth-story li img {
  filter: brightness(0) invert(1);
}
.auth-form {
  padding-block: 10px;
}
.auth-form h1 {
  font-size: 32px;
}
.auth-form > p {
  color: var(--muted);
  font-size: 15px;
}
.auth-form .form {
  margin-top: 25px;
}
.auth-form .form > .button {
  width: 100%;
}
.auth-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 25px;
  font-size: 14px;
}
.auth-bottom a {
  color: var(--blue);
  font-weight: 700;
}
.demo-link {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 50px;
  align-items: start;
}
.order-summary {
  width: 100%;
  font-size: 14px;
}
.order-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.order-summary dd {
  margin: 0;
  font-weight: bold;
}
.order-summary .total {
  font-size: 22px;
  border: 0;
  padding-top: 24px;
}
.simple-links li {
  padding: 8px 0;
}
.purchase-panel details {
  font-size: 13px;
  width: 100%;
}
.purchase-panel summary {
  cursor: pointer;
  color: var(--blue);
}
.status-page {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  text-align: center;
  gap: 15px;
}
.status-page h1 {
  margin-bottom: 0;
  font-size: 39px;
}
.status-page .lead {
  max-width: 670px;
}
.status-icon {
  background: var(--surface);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.error-number {
  font: 700 130px/1 Arial;
  color: var(--blue);
  letter-spacing: -8px;
  margin-bottom: 20px;
}
/* Member screens */
.is-member {
  background: #f4f7fc;
}
.member-main {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 42px;
  padding-block: 38px 80px;
  align-items: start;
}
.member-sidebar {
  min-width: 0;
  position: sticky;
  top: 120px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 22px 15px;
}
.member-sidebar > .eyebrow {
  padding-left: 13px;
  font-size: 11px;
}
.member-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  font-size: 14px;
  border-radius: 7px;
  margin-bottom: 4px;
}
.member-sidebar nav a:hover {
  background: var(--surface);
}
.member-sidebar nav a[aria-current="page"] {
  background: #e9f0ff;
  color: var(--blue);
  font-weight: 700;
}
.sidebar-help {
  margin: 22px 10px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.sidebar-help p {
  margin-bottom: 4px;
  color: var(--muted);
}
.sidebar-help a {
  color: var(--blue);
}
.logout-link {
  font-size: 13px;
  color: var(--muted);
  display: block;
  padding: 10px;
}
.member-content {
  min-width: 0;
}
.member-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.member-heading h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.member-heading .eyebrow {
  font-size: 11px;
  margin-bottom: 9px;
}
.member-heading p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.member-welcome {
  padding: 30px;
  background: var(--blue);
  color: white;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.member-welcome .badge {
  background: #ffffff22;
  color: white;
  margin-bottom: 16px;
}
.member-welcome h2 {
  font-size: 25px;
  margin-bottom: 9px;
}
.member-welcome p {
  color: #d5e2f9;
  font-size: 14px;
  margin: 0;
}
.member-welcome .button {
  font-size: 13px;
}
.member-section {
  margin-top: 38px;
}
.member-section > .section-heading h2 {
  font-size: 24px;
}
.member-section > .section-heading {
  margin-bottom: 20px;
}
.continue-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: white;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 15px;
}
.continue-art {
  width: 175px;
  min-height: 145px;
  flex: none;
  display: grid;
  place-items: center;
  background: #e7eeff;
  border-radius: 10px;
}
.continue-card h3 {
  font-size: 22px;
  margin: 10px 0;
}
.continue-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.continue-card h2 {
  font-size: 22px;
}
.member-content .event-card {
  padding: 20px;
}
.member-content .event-card h3 {
  font-size: 17px;
}
.member-content .event-date {
  min-width: 70px;
  min-height: 76px;
}
.compact-resources {
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 8px 22px;
}
.compact-resources li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compact-resources li:last-child {
  border: 0;
}
.compact-resources span {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.upgrade-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff5cc;
  padding: 28px;
  border-radius: 16px;
  margin-top: 38px;
}
.upgrade-banner .icon-tile {
  background: #ffeb94;
  margin: 0;
  flex: none;
}
.upgrade-banner h2 {
  font-size: 21px;
  margin-bottom: 8px;
}
.upgrade-banner p {
  font-size: 14px;
  margin: 0;
  color: #6a5d33;
}
.upgrade-banner > .text-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 13px;
}
.member-content .card-grid.three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.member-content .filter-bar {
  background: #eaf0fa;
  padding: 12px;
}
.member-content .filter-bar select {
  max-width: 170px;
  font-size: 13px;
}
.member-content .search-field {
  flex-basis: 100%;
}
.locked-panel {
  margin-top: 35px;
  padding: 35px;
  border: 1px dashed #9aaecb;
  border-radius: 16px;
  text-align: center;
  background: white;
}
.locked-panel > img {
  margin: 0 auto 20px;
}
.locked-panel h2 {
  font-size: 24px;
}
.locked-panel p {
  color: var(--muted);
  font-size: 15px;
}
.lesson-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 25px;
}
.video-shell {
  background: var(--dark);
  color: white;
  aspect-ratio: 16/10;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 28px;
  text-align: center;
}
.play-button {
  width: 70px;
  height: 70px;
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.video-shell p {
  font-size: 12px;
  color: #bacdf0;
  margin-bottom: 12px;
}
.video-shell h2 {
  font-size: 23px;
  margin-bottom: 12px;
}
.video-shell > span {
  font-size: 12px;
  color: #a9bde0;
}
.lesson-layout .prose {
  font-size: 15px;
}
.lesson-layout .prose h2 {
  font-size: 24px;
}
.download-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--blue);
  font-size: 14px;
}
.lesson-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.lesson-controls .button {
  font-size: 13px;
}
.lesson-modules {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.lesson-modules > h2 {
  font-size: 17px;
  padding: 20px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.lesson-modules li {
  padding: 18px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.lesson-modules li.active {
  background: #eaf1ff;
  border-left: 3px solid var(--blue);
}
.lesson-modules p {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}
.tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  overflow-x: auto;
}
.tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 14px 18px;
  font-size: 15px;
  white-space: nowrap;
}
.tabs button[aria-selected="true"] {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
  font-weight: 700;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 25px 0;
}
.facts-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: white;
}
.facts-grid dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.facts-grid dd {
  font-size: 14px;
  margin: 0;
}
.member-content .price-card {
  padding: 27px;
}
.member-content .price-card h2 {
  font-size: 22px;
  min-height: 62px;
}
.member-content .price-card .price {
  font-size: 48px;
}
.member-content .price-card .check-list li {
  font-size: 13px;
}
.status-examples details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
}
.status-examples summary {
  cursor: pointer;
  font-size: 15px;
}
.status-examples p {
  margin-top: 15px;
  font-size: 14px;
  color: var(--muted);
}
.notification-list {
  display: grid;
  gap: 16px;
}
.notification-list li {
  display: flex;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 26px;
  background: white;
}
.notification-list li > img {
  margin-top: 5px;
}
.notification-list h2 {
  font-size: 20px;
  margin-top: 12px;
}
.notification-list p {
  font-size: 14px;
  color: var(--muted);
}
.notification-list a {
  font-size: 14px;
  color: var(--blue);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  max-width: 540px;
  width: calc(100% - 32px);
  color: var(--ink);
  box-shadow: 0 25px 100px #00102d40;
}
dialog::backdrop {
  background: #081c3c99;
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dialog-header h2 {
  font-size: 23px;
}
.dialog-header .icon-button {
  margin-bottom: 18px;
}
.page-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.page-directory a {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
}
.page-directory a:hover {
  background: var(--surface);
}
/* Footer */
.site-footer {
  background: #081f4b;
  color: #c8d6ee;
  padding: 50px 0 0;
  margin-top: 30px;
}
.site-footer .brand {
  color: white;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffffff20;
}
.footer-top > p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  margin: 0;
}
.footer-top-link {
  font-size: 13px;
  margin-left: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr 1.2fr 1.1fr;
  gap: 28px;
  padding-block: 40px;
}
.footer-grid h2 {
  font-size: 15px;
  color: white;
  margin-bottom: 22px;
}
.footer-grid li {
  margin-bottom: 11px;
  font-size: 13px;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-grid p {
  font-size: 13px;
}
.footer-grid .text-link {
  color: var(--yellow);
  font-size: 14px;
}
.social-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 22px;
  color: #a7badc;
}
.social-labels li {
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border-top: 1px solid #ffffff20;
  padding: 22px 0;
  font-size: 11px;
  color: #9db2d6;
}
.help-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--yellow);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  z-index: 25;
  box-shadow: 0 5px 25px #061a4330;
}
/* Responsive */
@media (max-width: 1200px) {
  .header-row {
    gap: 20px;
  }
  .nav-list {
    gap: 16px;
    font-size: 13px;
  }
  .nav-dropdown summary {
    font-size: 13px;
  }
  .brand {
    font-size: 12px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .header-actions {
    gap: 15px;
  }
  .login-link {
    font-size: 13px;
  }
  .button.small {
    font-size: 12px;
    padding: 10px 13px;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-photo {
    height: 430px;
  }
  .hero-caption {
    left: -12px;
  }
  .about-split {
    gap: 50px;
  }
  .detail-grid {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 310px;
  }
  .contact-grid {
    gap: 50px;
  }
  .member-main {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 27px;
  }
  .member-sidebar {
    padding-inline: 10px;
  }
  .member-sidebar nav a {
    font-size: 13px;
    padding: 11px 9px;
  }
  .lesson-layout {
    grid-template-columns: 1fr;
  }
  .academy-hero > .container {
    gap: 45px;
  }
  .four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1020px) {
  .utility-bar,
  .academy-nav {
    display: none;
  }
  .nav-list > .mobile-menu-item {
    display: list-item;
  }
  #primary-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  #primary-nav .nav-list > li > a,
  #primary-nav .nav-dropdown summary {
    padding: 12px;
  }
  #primary-nav .nav-dropdown details > ul {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: var(--surface);
    padding: 6px 14px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .header-row {
    gap: 18px;
    min-height: 80px;
    flex-wrap: wrap;
    padding-block: 15px;
  }
  .brand {
    font-size: 13px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-row > nav {
    order: 4;
    flex-basis: 100%;
  }
  .nav-list {
    justify-content: space-between;
    gap: 15px;
  }
  .nav-list > li > a {
    padding: 12px 0;
  }
  .nav-dropdown details > ul {
    top: 35px;
  }
  .js-enabled #primary-nav:not(.is-open) {
    display: none;
  }
  .hero-grid {
    padding-block: 52px;
    gap: 32px;
  }
  .hero-copy h1 {
    font-size: 35px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-photo {
    height: 405px;
  }
  .hero-caption {
    padding: 16px;
    left: -8px;
  }
  .hero-facts {
    flex-direction: column;
    gap: 7px;
    margin-top: 22px;
  }
  .hero-caption strong {
    font-size: 14px;
  }
  .hero-caption span {
    font-size: 11px;
  }
  .benefit-strip ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .section {
    padding-block: 55px;
  }
  .about-split {
    gap: 36px;
  }
  .about-split h2 {
    font-size: 30px;
  }
  .card-grid.three {
    gap: 18px;
  }
  .card-body {
    padding: 21px;
  }
  .card-body h3 {
    font-size: 17px;
  }
  .course-art {
    padding: 20px;
    min-height: 190px;
  }
  .card-bottom {
    flex-wrap: wrap;
  }
  .card-bottom .badge {
    font-size: 11px;
  }
  .academy-type {
    padding-left: 35px;
  }
  .academy-type strong {
    font-size: 50px;
  }
  .faq-split {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 60px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .detail-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 25px;
  }
  .detail-grid h1 {
    font-size: 32px;
  }
  .purchase-panel {
    padding: 23px;
    top: 110px;
  }
  .purchase-panel h2 {
    font-size: 21px;
  }
  .editorial-split {
    gap: 40px;
  }
  .profile-hero {
    grid-template-columns: 260px 1fr;
    gap: 35px;
  }
  .academy-hero h1 {
    font-size: 40px;
  }
  .academy-poster {
    padding: 30px;
  }
  .academy-poster strong {
    font-size: 45px;
  }
  .academy-card {
    padding: 25px;
    gap: 18px;
  }
  .auth-layout {
    gap: 40px;
  }
  .auth-story {
    padding: 32px;
  }
  .auth-story h2 {
    font-size: 36px;
  }
  .auth-form h1 {
    font-size: 28px;
  }
  .checkout-grid {
    grid-template-columns: 1fr 310px;
    gap: 25px;
  }
  .form-panel {
    padding: 27px;
  }
  .member-main {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
  }
  .member-sidebar nav a {
    font-size: 12px;
    gap: 8px;
  }
  .member-sidebar nav img {
    width: 18px;
    height: 18px;
  }
  .member-welcome {
    flex-direction: column;
    align-items: flex-start;
  }
  .continue-art {
    width: 130px;
    min-height: 140px;
  }
  .continue-card {
    gap: 20px;
  }
  .continue-card h3 {
    font-size: 18px;
  }
  .upgrade-banner {
    flex-wrap: wrap;
  }
  .upgrade-banner > .text-link {
    margin-left: 0;
  }
  .member-content .pricing-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .member-content .table-wrap table {
    min-width: 600px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .utility-bar {
    padding-block: 7px;
  }
  .utility-bar > .container > span {
    display: none;
  }
  .utility-bar ul {
    justify-content: space-between;
    width: 100%;
    font-size: 11px;
  }
  .header-row {
    min-height: 75px;
    padding-block: 13px;
    gap: 12px;
  }
  .brand {
    font-size: 11px;
    gap: 8px;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .header-actions .join-link {
    display: none;
  }
  .header-actions {
    gap: 12px;
  }
  .login-link {
    font-size: 12px;
    gap: 6px;
  }
  .login-link img {
    width: 18px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 14px;
    padding: 7px 0;
  }
  .nav-list > li > a {
    padding: 12px;
  }
  .nav-dropdown summary {
    padding: 12px;
    font-size: 14px;
  }
  .nav-dropdown details > ul {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: var(--surface);
    padding: 6px 14px;
  }
  .nav-dropdown li a {
    padding: 10px 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 38px 45px;
  }
  .hero-copy h1 {
    font-size: 36px;
    letter-spacing: -0.7px;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-copy .actions {
    margin-top: 24px;
  }
  .hero-facts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 20px;
    font-size: 12px;
  }
  .hero-photo {
    height: 345px;
    border-radius: 18px 18px 55px 18px;
    object-position: 52% center;
  }
  .hero-caption {
    left: 14px;
    bottom: 0;
    padding: 15px 18px;
    gap: 13px;
  }
  .hero-caption img {
    width: 22px;
    height: 22px;
    padding: 9px;
  }
  .image-credit {
    right: 17px;
    bottom: 31px;
    font-size: 8px;
    max-width: 90px;
    text-align: right;
  }
  .benefit-strip ul {
    gap: 20px 12px;
    padding-block: 24px;
  }
  .benefit-strip li {
    font-size: 12px;
    gap: 9px;
    align-items: flex-start;
  }
  .benefit-strip li img {
    width: 22px;
    height: 22px;
  }
  .section {
    padding-block: 40px;
  }
  h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  h2 {
    font-size: 27px;
  }
  .lead {
    font-size: 17px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .section-heading {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading > .text-link {
    font-size: 13px;
  }
  .card-grid.three,
  .card-grid.two,
  .card-grid.four {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .course-art {
    min-height: 200px;
  }
  .card-body {
    padding: 24px;
  }
  .card-body h3 {
    font-size: 20px;
  }
  .card-body .meta {
    font-size: 12px;
  }
  .card-bottom {
    flex-wrap: nowrap;
  }
  .card-bottom .badge {
    font-size: 12px;
  }
  .course-card .card-body p {
    font-size: 15px;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-split h2 {
    font-size: 31px;
  }
  .feature-stack li {
    gap: 18px;
  }
  .event-card {
    padding: 20px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .event-date {
    min-width: 62px;
    min-height: 74px;
    font-size: 12px;
  }
  .event-date img {
    width: 23px;
    height: 23px;
  }
  .event-card > div:nth-child(2) {
    flex: 1;
    min-width: 150px;
  }
  .event-card h3 {
    font-size: 18px;
  }
  .event-card p {
    font-size: 12px;
  }
  .event-card .meta {
    font-size: 11px;
  }
  .event-card > .round-link {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .price-card {
    padding: 29px;
  }
  .price-card h2 {
    font-size: 26px;
    min-height: 0;
  }
  .price {
    font-size: 54px;
  }
  .price-card .check-list li {
    font-size: 14px;
  }
  .academy-teaser {
    margin-block: 10px;
  }
  .academy-teaser > .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .academy-teaser h2 {
    font-size: 39px;
  }
  .academy-type {
    border-left: 0;
    border-top: 1px solid #14345d30;
    padding-left: 0;
    padding-top: 30px;
  }
  .academy-type strong {
    font-size: 49px;
  }
  .academy-type > span {
    font-size: 17px;
  }
  .profile-art {
    min-height: 260px;
  }
  .trainer-card .card-body h3 {
    font-size: 20px;
  }
  .news-art {
    min-height: 170px;
  }
  .faq-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .faq-list p {
    font-size: 14px;
  }
  .join-banner {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    border-radius: 17px;
  }
  .join-banner h2 {
    font-size: 29px;
  }
  .join-banner p:not(.eyebrow) {
    font-size: 15px;
  }
  .join-banner > .button {
    width: 100%;
  }
  .breadcrumbs {
    font-size: 11px;
    padding-top: 20px;
  }
  .page-intro {
    padding-block: 35px 28px;
  }
  .top-tight {
    padding-top: 8px;
  }
  .filter-bar {
    padding: 14px;
    gap: 12px;
  }
  .search-field {
    flex-basis: 100%;
    min-width: 0;
  }
  .filter-bar > label:not(.search-field) {
    flex: 1;
    min-width: 115px;
  }
  .filter-bar select {
    font-size: 12px;
    width: 100%;
    max-width: none;
    padding: 12px 9px;
  }
  .filter-bar .text-button {
    font-size: 12px;
    padding: 8px;
  }
  .resource-card {
    padding: 27px;
  }
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-photo {
    height: 330px;
  }
  .profile-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .profile-hero > .profile-art {
    min-height: 300px;
  }
  .table-wrap table {
    min-width: 520px;
  }
  th,
  td {
    padding: 16px;
    font-size: 13px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .steps li {
    padding-top: 22px;
  }
  .steps li > span {
    margin-bottom: 14px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .detail-grid h1 {
    font-size: 32px;
  }
  .purchase-panel {
    padding: 27px;
    position: static;
  }
  .purchase-panel h2 {
    font-size: 24px;
  }
  .course-detail-art {
    min-height: 210px;
    padding: 26px;
    font-size: 23px;
  }
  .course-detail-art img {
    width: 66px;
    height: 66px;
  }
  .inline-meta {
    gap: 12px;
    font-size: 12px;
  }
  .inline-meta li + li:before {
    margin-right: 12px;
  }
  .prose {
    font-size: 16px;
  }
  .prose h2 {
    font-size: 25px;
  }
  .prose blockquote {
    font-size: 20px;
    padding: 22px;
  }
  .document-preview {
    padding: 25px;
  }
  .academy-nav ul {
    gap: 18px;
    font-size: 12px;
    padding-block: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }
  .academy-hero > .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 35px;
  }
  .academy-hero h1 {
    font-size: 42px;
  }
  .academy-poster {
    min-height: 300px;
    padding: 30px;
    border-radius: 18px 50px 18px 18px;
  }
  .academy-poster strong {
    font-size: 48px;
    margin: 20px 0;
  }
  .academy-card {
    padding: 25px;
    gap: 18px;
  }
  .academy-card h3 {
    font-size: 23px;
  }
  .big-number {
    font-size: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-grid h2 {
    font-size: 26px;
  }
  .contact-facts {
    margin: 25px 0;
  }
  .form-panel {
    padding: 25px;
  }
  .form {
    gap: 17px;
  }
  .form-panel > h2 {
    font-size: 23px;
  }
  .form > .button {
    width: 100%;
  }
  .form-row {
    flex-wrap: wrap;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    padding-block: 35px;
    gap: 30px;
  }
  .auth-story {
    position: static;
    min-height: 0;
    padding: 27px;
  }
  .auth-story h2 {
    font-size: 33px;
    margin-top: 10px;
  }
  .auth-story ul {
    display: none;
  }
  .auth-story > p:not(.eyebrow) {
    margin: 0;
    font-size: 14px;
  }
  .auth-form {
    padding: 5px 2px;
  }
  .auth-form h1 {
    font-size: 29px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .status-page {
    min-height: 510px;
    padding-block: 55px;
    gap: 12px;
  }
  .status-page h1 {
    font-size: 30px;
  }
  .status-page .lead {
    font-size: 16px;
  }
  .status-page .actions {
    justify-content: center;
  }
  .error-number {
    font-size: 110px;
  }
  .member-main {
    grid-template-columns: 1fr;
    padding-top: 20px;
    gap: 25px;
    padding-bottom: 45px;
  }
  .member-sidebar {
    position: static;
    padding: 8px;
    border-radius: 10px;
    overflow: hidden;
  }
  .member-sidebar > .eyebrow,
  .sidebar-help,
  .logout-link {
    display: none;
  }
  .member-sidebar nav ul {
    display: flex;
    gap: 5px;
    overflow-x: auto;
  }
  .member-sidebar nav li {
    flex: none;
  }
  .member-sidebar nav a {
    padding: 10px;
    font-size: 12px;
    margin: 0;
    gap: 7px;
    white-space: nowrap;
  }
  .member-sidebar nav img {
    width: 17px;
    height: 17px;
  }
  .member-heading {
    margin-bottom: 23px;
  }
  .member-heading h1 {
    font-size: 29px;
  }
  .member-heading .eyebrow {
    font-size: 10px;
  }
  .member-heading p:not(.eyebrow) {
    font-size: 14px;
  }
  .notification-link {
    width: 36px;
    height: 36px;
  }
  .member-welcome {
    padding: 25px;
  }
  .member-welcome h2 {
    font-size: 24px;
  }
  .member-section {
    margin-top: 30px;
  }
  .member-section > .section-heading h2 {
    font-size: 24px;
  }
  .continue-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .continue-art {
    width: 100%;
    min-height: 140px;
  }
  .continue-card h3 {
    font-size: 21px;
  }
  .compact-resources {
    padding-inline: 17px;
  }
  .compact-resources li {
    font-size: 14px;
    gap: 12px;
  }
  .compact-resources span {
    display: none;
  }
  .upgrade-banner {
    padding: 23px;
    gap: 16px;
  }
  .upgrade-banner .icon-tile {
    width: 48px;
    height: 48px;
  }
  .upgrade-banner h2 {
    font-size: 21px;
  }
  .upgrade-banner > div {
    flex: 1;
    min-width: 200px;
  }
  .member-content .card-grid.three {
    grid-template-columns: 1fr;
  }
  .member-content .filter-bar select {
    max-width: none;
  }
  .locked-panel {
    padding: 25px;
  }
  .locked-panel h2 {
    font-size: 22px;
  }
  .video-shell {
    min-height: 300px;
    padding: 25px;
  }
  .video-shell h2 {
    font-size: 22px;
  }
  .play-button {
    width: 65px;
    height: 65px;
  }
  .lesson-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .lesson-controls .button {
    width: 100%;
  }
  .tabs {
    gap: 3px;
  }
  .tabs button {
    font-size: 13px;
    padding: 13px 12px;
  }
  .facts-grid {
    gap: 10px;
    padding-block: 20px;
  }
  .facts-grid div {
    padding: 18px;
  }
  .notification-list li {
    padding: 22px;
    gap: 16px;
  }
  .notification-list li > img {
    width: 22px;
    height: 22px;
  }
  .notification-list h2 {
    font-size: 19px;
  }
  .page-directory {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-top: 35px;
    margin-top: 10px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 28px;
  }
  .footer-top .brand {
    font-size: 13px;
  }
  .footer-top .brand img {
    width: 43px;
    height: 43px;
  }
  .footer-top > p {
    font-size: 16px;
    flex-basis: 100%;
    order: 3;
  }
  .footer-top-link {
    font-size: 11px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-block: 30px;
  }
  .footer-grid h2 {
    font-size: 14px;
    margin-bottom: 17px;
  }
  .footer-grid li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-grid p {
    font-size: 12px;
  }
  .social-labels {
    gap: 6px 10px;
  }
  .social-labels li {
    font-size: 10px;
  }
  .footer-bottom {
    gap: 12px;
    flex-direction: column;
    font-size: 10px;
    padding-bottom: 35px;
  }
  .help-fab {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 380px) {
  .brand {
    font-size: 10px;
  }
  .brand img {
    width: 33px;
    height: 33px;
  }
  .header-row {
    gap: 9px;
  }
  .header-actions .login-link span {
    display: none;
  }
  .hero-copy h1 {
    font-size: 32px;
  }
  .hero-photo {
    height: 310px;
  }
  .hero-caption {
    left: 10px;
    padding: 13px;
    gap: 10px;
  }
  .hero-caption strong {
    font-size: 13px;
  }
  .hero-caption span {
    font-size: 10px;
  }
  .hero-text-link {
    font-size: 13px;
  }
  .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .hero-copy .actions > .button {
    width: 100%;
  }
  .card-bottom .badge {
    font-size: 11px;
  }
  .price-card {
    padding: 25px;
  }
  .academy-card {
    padding: 22px;
    gap: 15px;
  }
  .form-panel {
    padding: 21px;
  }
  .footer-grid {
    gap: 25px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .course-card:hover,
  .news-card:hover {
    transform: none;
  }
}
.support-dialog {
  margin: auto 24px 24px auto;
  max-width: 400px;
}
.support-dialog .dialog-header h2 {
  font-size: 24px;
}
.support-dialog .dialog-header .eyebrow {
  font-size: 11px;
  margin-bottom: 5px;
}
.chat-bubble {
  padding: 17px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 14px;
}
.chat-shortcuts {
  margin: 20px 0;
}
.chat-shortcuts li {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 13px;
  color: var(--blue);
}
.support-dialog .form > .button {
  width: 100%;
}
.lesson-layout > section,
.lesson-layout > aside {
  min-width: 0;
}
.video-shell {
  width: 100%;
  aspect-ratio: auto;
}
.calendar-panel {
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  margin: 0 0 25px;
}
.calendar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.calendar-title h2 {
  font-size: 21px;
}
.calendar-title span {
  font-size: 12px;
  color: var(--muted);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}
.calendar-grid li {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 6px;
  background: #f6f8fc;
}
.calendar-grid .weekday {
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  min-height: 32px;
}
.calendar-grid .calendar-muted {
  color: #aebbd0;
  background: transparent;
}
.calendar-grid a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 43px;
  background: var(--yellow);
  border-radius: 6px;
  color: var(--dark);
  font-weight: bold;
}
.calendar-panel .fine-print {
  margin: 15px 0 0;
}
.access-alert {
  padding: 30px;
  background: #fff4d8;
  border: 1px solid #e8d295;
  border-radius: 15px;
  margin-bottom: 30px;
}
.access-alert h2 {
  font-size: 24px;
}
.access-alert p {
  font-size: 15px;
}
.member-content .sample-options {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
}
.sample-options a {
  margin-right: 15px;
  text-decoration: underline;
}
.resource-card .button {
  font-size: 13px;
}
@media (max-width: 760px) {
  .calendar-panel {
    padding: 18px;
  }
  .calendar-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12px;
  }
  .calendar-grid {
    gap: 3px;
  }
  .calendar-grid li {
    font-size: 12px;
  }
  .calendar-grid .weekday {
    font-size: 10px;
  }
}
@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .help-fab,
  .member-sidebar,
  .button {
    display: none;
  }
  .container {
    width: 100%;
  }
  .member-main,
  .detail-grid {
    display: block;
  }
  .section {
    padding: 20px 0;
  }
  body {
    color: #000;
    background: #fff;
  }
  .course-card,
  .resource-card {
    break-inside: avoid;
  }
}

/* Navigation typography and shared footer refinements. */
.nav-list,
.nav-dropdown summary,
.nav-dropdown a,
.academy-nav,
.member-sidebar nav,
.site-footer nav,
.utility-bar a,
.header-actions {
  font-family: HubCaps, Hub, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-list {
  gap: 18px;
  font-size: 13px;
}
.nav-dropdown summary {
  font-size: inherit;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary::marker {
  content: "";
}
.nav-dropdown details[open] > summary::after {
  transform: rotate(180deg);
}
.academy-nav {
  margin-block: 20px;
  border: 1px solid #c7d5ef;
  border-radius: 12px;
  background: #eaf1ff;
  box-shadow: 0 4px 16px #123b8c0d;
}
.academy-nav ul {
  gap: 8px;
  padding: 10px;
  border: 0;
  flex-wrap: wrap;
  overflow: visible;
  white-space: normal;
}
.academy-nav li {
  flex: 1 1 auto;
}
.academy-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #123b8c;
  font-size: 14px;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s;
}
.academy-nav a:hover,
.academy-nav a:focus-visible {
  background: #d4e2ff;
  color: #0a2457;
}
.academy-nav a[aria-current="page"] {
  background: #123b8c;
  color: white;
  box-shadow: 0 3px 8px #123b8c26;
}
.site-footer nav a[aria-current="page"] {
  color: var(--yellow);
}
.site-footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff45;
  border-radius: 50%;
  background: #ffffff0d;
}
.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible {
  background: var(--blue);
  border-color: var(--yellow);
}
.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.developer-credit a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
}
.developer-credit img {
  display: block;
  object-fit: contain;
}
@media (max-width: 1020px) {
  .nav-list {
    align-items: stretch;
    gap: 0;
    font-size: 14px;
  }
  .nav-dropdown summary {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 760px) {
  .academy-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .academy-nav li:first-child {
    grid-column: 1 / -1;
  }
  .academy-nav a {
    min-height: 44px;
    padding: 10px;
    font-size: 12px;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

.site-footer .social-icons li {
  margin-bottom: 0;
}

/* Public-content chat and editorial refinements. */
.trainers-pair .profile-art {
  min-height: 320px;
}
.trainers-pair .card-body {
  padding: 30px;
}
.article-cover {
  margin-block: 28px 0;
}
.article-cover > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 16px;
}
.article-cover figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.support-dialog {
  width: min(520px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  margin: auto 12px 12px auto;
  max-height: calc(100dvh - 24px);
  padding: 24px;
}
.chat-intro,
.chat-privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: min(340px, 38dvh);
  min-height: 130px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 6px 4px 0;
  margin-block: 16px;
}
.chat-message {
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 14px;
  max-width: 94%;
  overflow-wrap: anywhere;
}
.chat-message[data-role="user"] {
  align-self: flex-end;
  background: var(--blue);
  color: white;
}
.chat-speaker {
  display: block;
  font:
    700 10px/1.5 HubCaps,
    sans-serif;
  margin-bottom: 6px;
}
.chat-message-text {
  margin: 0;
  white-space: pre-line;
  font-size: 14px;
  line-height: 1.7;
}
.chat-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 10px;
  font-size: 12px;
}
.chat-sources a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.chat-prompts button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 8px 11px;
  color: var(--blue);
  font-size: 11px;
}
.chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat-form textarea {
  resize: vertical;
  min-height: 68px;
  max-height: 120px;
}
.chat-form .chat-privacy {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .article-cover > img {
    aspect-ratio: 4 / 3;
  }
  .trainers-pair .profile-art {
    min-height: 260px;
  }
  .support-dialog {
    padding: 18px;
  }
}

.site-footer .social-icons {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 8px;
}
@media (max-width: 760px) {
  .site-footer .social-icons {
    grid-template-columns: repeat(4, 40px);
  }
}

@media (min-width: 1021px) {
  .site-header .brand,
  .footer-top .brand {
    font-size: 15px;
  }
  .site-header .brand img,
  .footer-top .brand img {
    width: 54px;
    height: 54px;
  }
}
/* Larger mobile brand, with room retained for account and menu controls. */
@media (max-width: 760px) {
  .site-header .brand,
  .footer-top .brand {
    font-size: 14px;
    gap: 10px;
  }
  .site-header .brand img,
  .footer-top .brand img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
}
@media (max-width: 360px) {
  .site-header .brand {
    font-size: 13px;
    gap: 8px;
  }
  .site-header .brand img {
    width: 44px;
    height: 44px;
  }
}
/* Decorative stars reuse the exact Concept 01 logo geometry. */
.home-hero,
.academy-teaser,
.reviews-section,
.join-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.home-hero::before,
.academy-teaser::before,
.reviews-section::before,
.reviews-section::after,
.join-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: url("../svg/brand-star.svg") center / contain no-repeat;
}
.home-hero::before {
  width: 440px;
  height: 430px;
  right: -95px;
  top: -85px;
  opacity: 0.13;
  transform: rotate(14deg);
}
.price-card.featured h2 {
  padding-right: 36px;
  background: url("../svg/brand-star.svg") right 3px / 28px 28px no-repeat;
}
.academy-teaser::before {
  width: 300px;
  height: 300px;
  top: -115px;
  right: 40%;
  background-image: url("../svg/brand-star-outline.svg");
  opacity: 0.16;
  transform: rotate(-15deg);
}
.reviews-section::before,
.reviews-section::after {
  width: 120px;
  height: 120px;
  opacity: 0.2;
}
.reviews-section::before {
  top: 12px;
  right: -25px;
  transform: rotate(18deg);
}
.reviews-section::after {
  bottom: -40px;
  left: -20px;
  transform: rotate(-16deg);
}
.join-banner::before {
  width: 235px;
  height: 235px;
  right: -75px;
  bottom: -100px;
  opacity: 0.12;
  transform: rotate(18deg);
}
@media (max-width: 760px) {
  .home-hero::before {
    width: 230px;
    height: 230px;
    top: auto;
    bottom: -45px;
    right: -75px;
    opacity: 0.1;
  }
  .price-card.featured h2 {
    padding-right: 0;
    padding-top: 34px;
    background-position: left top;
  }
  .academy-teaser::before {
    width: 190px;
    height: 190px;
    right: -60px;
    top: -60px;
    opacity: 0.12;
  }
  .reviews-section::before {
    width: 70px;
    height: 70px;
    opacity: 0.15;
  }
  .reviews-section::after {
    display: none;
  }
  .join-banner::before {
    width: 170px;
    height: 170px;
    right: -80px;
    bottom: -65px;
    opacity: 0.09;
  }
}
/* Generated editorial photography */
.social-proof {
  padding-top: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.social-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-proof-list li {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}
.social-proof-list li + li {
  border-left: 1px solid var(--line);
}
.social-proof-list strong {
  color: var(--blue);
  font:
    700 42px/1.2 Arial,
    sans-serif;
}
.social-proof-list li > span {
  color: var(--muted);
  font-size: 14px;
}
.rating-star {
  margin-left: 6px;
  color: #ad7500;
  font-size: 30px;
}
.reviews-section {
  background: #f2f6fd;
}
.reviews-note {
  color: var(--muted);
  font-size: 12px;
  margin: 14px 0 0;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  min-width: 0;
}
.review-card blockquote {
  margin: 0;
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
}
.review-card blockquote p {
  margin: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author img {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}
.review-author h3 {
  margin: 0 0 3px;
  font-size: 15px;
}
.review-author span {
  color: var(--muted);
  font-size: 11px;
}
@media (max-width: 760px) {
  .social-proof-list {
    gap: 12px;
  }
  .social-proof-list strong {
    font-size: 30px;
  }
  .social-proof-list li > span {
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .rating-star {
    font-size: 22px;
  }
  .review-card {
    padding: 24px;
  }
}
.card-grid.two .profile-art {
  min-height: 330px;
}
.join-banner > div {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero-copy h1 {
  font-size: clamp(29px, 2.7vw, 42px);
  overflow-wrap: anywhere;
}
.course-art,
.news-art,
.profile-art,
.course-detail-art,
.continue-art {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.course-art > .generated-photo,
.news-art > .generated-photo,
.profile-art > .generated-photo,
.course-detail-art > .generated-photo,
.continue-art > .generated-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 1;
}
.profile-art > .generated-photo {
  object-position: center 8%;
}
.profile-art > span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 9px;
  border-radius: 5px;
  background: #102a48d9;
  color: white;
  font-size: 10px;
}
.academy-teaser-photo {
  margin: 0;
  min-width: 0;
}
.academy-teaser-photo > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
}
.academy-teaser-photo figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
}
.academy-teaser-photo figcaption a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.academy-card > .generated-photo {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.academy-card:has(> .generated-photo) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 16px;
}
@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: 29px;
  }
}
