:root {
  --background: #0a0806;
  --foreground: #f7f1e4;
  --muted: #e6dcc8;
  --subtle: #cbbd9f;
  --gold: #c9a84c;
  --on-gold: #0a0806;
  --card: #16130f;
  --elevated: #1c1812;
  --gold-line: color-mix(in srgb, #c9a84c 35%, transparent);
  --gold-line-soft: color-mix(in srgb, #c9a84c 25%, transparent);
  --font-sans: "Source Sans 3", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --tracking-kicker: 0.22em;
  --tracking-logo: 0.16em;
  --tracking-display: -0.03em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--on-gold);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

button:not(:disabled),
[role="button"]:not(:disabled) {
  cursor: pointer;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: var(--tracking-display);
  font-weight: 500;
}

p {
  text-wrap: pretty;
}

.skip {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip:focus {
  left: 1.25rem;
  top: 0.75rem;
  z-index: 60;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-width: 0;
}
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

.gold-rule {
  height: 1px;
  width: 100%;
  background: var(--gold-line);
}

.kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}

.type-nav {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  line-height: 1.3;
}

.type-logo {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: var(--tracking-logo);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .type-logo {
    font-size: 0.9rem;
  }
}

.type-tagline {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: var(--tracking-kicker);
  color: var(--gold);
  line-height: 1.3;
}

.type-display {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.65rem);
  line-height: 1.15;
}

.type-hero {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 1.1rem + 4.2vw, 4.35rem);
  line-height: 1.08;
}

.type-lede {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
}

.header-row {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .brand img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: var(--muted);
  transition: color 0.15s;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--gold);
}

.menu-btn {
  position: relative;
  z-index: 50;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--background);
  padding: 5rem 1.25rem 2rem;
}
.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--background) 75%, transparent),
    color-mix(in srgb, var(--background) 45%, transparent),
    color-mix(in srgb, var(--background) 25%, transparent)
  );
}
.hero-inner {
  position: relative;
  display: flex;
  min-height: 11rem;
  align-items: flex-end;
  padding: 1.75rem 0;
}
@media (min-width: 640px) {
  .hero-inner {
    min-height: 14rem;
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.hero h1 {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gold);
}
@media (min-width: 640px) {
  .hero h1 {
    font-size: 1.875rem;
  }
}

.section {
  padding: 2rem 0;
}
@media (min-width: 640px) {
  .section {
    padding: 2.5rem 0;
  }
}
.section-compact {
  padding: 0.9rem 0;
}
@media (min-width: 640px) {
  .section-compact {
    padding: 1.05rem 0;
  }
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .section-head h2 {
    font-size: 1.5rem;
  }
}
.section-head .action {
  color: var(--gold);
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .watch-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.read-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .read-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .read-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.media-card {
  display: block;
  min-width: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}
.media-card:hover h3 {
  color: var(--gold);
}
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
  outline-offset: -1px;
}
.play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--background) 20%, transparent);
  pointer-events: none;
}
.play span {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--on-gold);
}
.card-meta {
  padding-top: 0.75rem;
}
.card-meta h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta .sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--muted);
}
.card-meta .date {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--subtle);
}

.product,
.final-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  background: var(--card);
  padding: 1.5rem 1.25rem;
}
@media (min-width: 640px) {
  .product,
  .final-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}
.product h2,
.final-cta h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .product h2,
  .final-cta h2 {
    font-size: 1.35rem;
  }
}
.product .actions,
.final-cta .actions {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .product .actions,
  .final-cta .actions {
    width: 14rem;
  }
}
.final-cta {
  gap: 0.7rem;
  padding: 0.75rem 1.1rem;
}
@media (min-width: 640px) {
  .final-cta {
    gap: 1rem;
    padding: 0.7rem 1.25rem;
  }
}
.final-cta h2 {
  margin: 0.15rem 0 0;
  font-size: 1rem;
}
@media (min-width: 640px) {
  .final-cta h2 {
    font-size: 1.1rem;
  }
}
@media (min-width: 640px) {
  .final-cta .actions {
    width: 12.5rem;
  }
}
.final-cta .note {
  margin-top: 0.3rem;
  font-size: 0.8rem;
}
.note {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--subtle);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  border: 0;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--gold);
  color: var(--on-gold);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--gold) 90%, white);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.btn-block {
  width: 100%;
}

.about-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .about-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.about-row p {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: var(--muted);
}

.about-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .about-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
  .about-copy {
    flex: 1 1 0;
    min-width: 0;
  }
}
.founder {
  width: min(100%, 18rem);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .founder {
    width: 12.15rem;
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .founder {
    flex: 0 0 17.5rem;
    width: 17.5rem;
    max-width: 17.5rem;
    margin: 2.75rem 0 0;
    text-align: left;
  }
}
.founder img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
}
.founder-name {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--foreground);
}
.founder-role {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--gold);
}
.founder-bio {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.page-intro {
  padding: 2rem 0;
}
@media (min-width: 640px) {
  .page-intro {
    padding: 2.5rem 0;
  }
}
.page-intro h1 {
  margin: 1rem 0 0;
  max-width: 48rem;
}
.page-intro .lede {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--muted);
}

.list-block {
  max-width: 42rem;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}
.list-block li {
  padding: 1rem 1.25rem;
}
@media (min-width: 640px) {
  .list-block li {
    padding: 1rem 2rem;
  }
}
.list-block li + li {
  border-top: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
}
.list-block .num {
  margin: 0;
}
.list-block p.title,
.list-block h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}
.coming {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.coming h2 {
  margin: 0;
}
.soon {
  flex-shrink: 0;
  color: var(--subtle);
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-list .learn-card,
.post-list > li > a {
  display: grid;
  gap: 0.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
}
@media (min-width: 640px) {
  .post-list .learn-card,
  .post-list > li > a {
    grid-template-columns: 8.5rem 1fr;
    gap: 2rem;
  }
}
.post-list h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}
.post-list h2 a:hover,
.post-list a:hover h2 {
  color: var(--gold);
}
.post-list .summary {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  color: var(--muted);
}
.post-list .read-btn {
  margin-top: 1.25rem;
  width: fit-content;
  min-width: 10.5rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: baseline;
}
@media (min-width: 640px) {
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.post-meta .when {
  color: var(--subtle);
}

.article {
  max-width: 42rem;
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.55;
}
.article h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: var(--tracking-display);
  color: var(--gold);
}
.article h2:first-child {
  margin-top: 0;
}
.article p + p,
.article ol,
.article ul {
  margin-top: 1.5rem;
}
.article ol,
.article ul {
  padding-left: 1.5rem;
}
.article li + li {
  margin-top: 0.55rem;
}
.article a {
  color: var(--gold);
  text-underline-offset: 4px;
}
.article a:hover {
  text-decoration: underline;
}

.back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}
.back:hover {
  color: var(--gold);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  padding: 0 1rem;
  color: var(--muted);
}
.chip:hover {
  border-color: var(--gold);
  color: var(--foreground);
}
.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--on-gold);
}

.contact-email {
  margin: 2.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.65rem);
  color: var(--gold);
}
.contact-email a:hover {
  color: var(--foreground);
}

.row-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .row-btns {
    flex-direction: row;
  }
}

.site-footer {
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-copy a:hover {
  color: var(--gold);
}
.dot {
  margin: 0 0.5rem;
  color: color-mix(in srgb, var(--gold) 50%, transparent);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.footer-nav a {
  color: var(--muted);
}
.footer-nav a:hover {
  color: var(--gold);
}

body.nav-open {
  overflow: hidden;
}

.intro-video {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .intro-video {
    padding: 40px 0 0;
  }
}
.intro-video-frame {
  position: relative;
  width: 92%;
  max-width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  aspect-ratio: 16 / 9;
  line-height: 0;
}
@media (min-width: 768px) {
  .intro-video-frame {
    width: 53%;
    max-width: 650px;
  }
}
.intro-video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}

.lesson-back {
  color: var(--muted);
}
.lesson-back:hover {
  color: var(--gold);
}
.lesson-video {
  padding: 0 0 2rem;
}
.lesson-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  aspect-ratio: 16 / 9;
  line-height: 0;
}
@media (min-width: 769px) {
  .lesson-video-frame {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.lesson-video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.prompt-block {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  padding: 1rem 1.15rem;
  overflow-x: auto;
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.access-form {
  max-width: 28rem;
  margin: 1.5rem 0 0;
}
.access-form label {
  display: block;
  margin: 1rem 0 0.35rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
}
.access-form label span {
  color: var(--subtle);
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 500;
}
.access-form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1.05rem;
}
.access-form button {
  margin-top: 1.25rem;
}
.access-error {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  color: #f0d9a8;
}
.list-block .title a:hover {
  color: var(--gold);
}

#beginners-course {
  scroll-margin-top: 4.75rem;
}

.sales-block {
  margin-top: 0;
  padding: 30px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sales-block {
    margin-top: 0;
    padding: 40px 0;
    overflow: visible;
  }
}
.sales-block-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 379px) {
  .sales-block-inner {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .sales-block-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.1rem;
  }
}
.sales-video-frame {
  position: relative;
  width: 6.75rem;
  max-width: 6.75rem;
  height: 12rem;
  overflow: hidden;
  background: #000;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  aspect-ratio: 9 / 16;
  line-height: 0;
  flex: none;
  contain: paint;
}
@media (min-width: 768px) {
  .sales-video-frame {
    width: min(100%, 12.75rem);
    max-width: 12.75rem;
    height: auto;
    flex: none;
    contain: paint;
  }
}
.sales-video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}
.sales-cta {
  flex: 1 1 0;
  min-width: 0;
  max-width: 24rem;
  text-align: left;
  overflow-wrap: break-word;
}
.sales-cta h2 {
  margin: 0.12rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .sales-cta h2 {
    font-size: clamp(1.1rem, 0.95rem + 0.85vw, 1.45rem);
  }
}
.sales-cta .btn {
  min-height: 2.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .sales-cta .btn {
    font-size: 0.9rem;
  }
}
.sales-cta .note {
  margin-top: 0.3rem;
  text-align: left;
}
.sales-cta .desc {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}
@media (max-width: 379px) {
  .sales-cta {
    text-align: center;
  }
  .sales-cta .note,
  .sales-cta .desc {
    text-align: center;
  }
}
.course-entry .sales-block {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  main,
  .site-header,
  .site-footer,
  .hero,
  .section,
  .watch-grid,
  .read-grid,
  .about-row,
  .product,
  .final-cta,
  .footer-inner,
  .footer-top,
  .footer-nav,
  .course-entry,
  .page-intro,
  .media-card,
  .list-block {
    max-width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
