@font-face {
  font-family: Karla;
  src: url("/fonts/karla.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f6f3ea;
  --ink: #20382e;
  --muted: #656c60;
  --orange: #df512a;
  --line: #d6d8cc;
  --green: #244635;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    17px/1.55 Karla,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  color: inherit;
}
h1,
h2 {
  font-family: Instrument, Georgia, serif;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.035em;
}
h3 {
  line-height: 1.22;
  font-weight: 600;
}
em {
  font-weight: 400;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px;
}
.skip:focus {
  transform: none;
}
[hidden] {
  display: none !important;
}
.site-header {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-shrink: 0;
}
.brand > svg {
  width: 46px;
  height: 46px;
}
.brand > span {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -1px;
}
.brand-dot {
  color: var(--orange);
}
.site-header nav {
  display: flex;
  gap: 31px;
  font-size: 15px;
  font-weight: 500;
}
.site-header nav a {
  padding-block: 10px;
}
.header-youtube {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.header-youtube > svg:first-child {
  width: 24px;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 3px;
}
.header-youtube > svg:last-child {
  width: 18px;
  margin-left: 4px;
}
.hero {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  align-items: center;
  min-height: 650px;
  padding-block: 50px 66px;
  gap: 12px;
  position: relative;
}
.eyebrow {
  font:
    600 11px/1.5 Karla,
    Arial,
    sans-serif;
  letter-spacing: 1.9px;
  color: var(--ink);
  text-transform: uppercase;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.sun-symbol {
  font-size: 27px;
  line-height: 1;
  color: var(--orange);
}
.hero h1 {
  font-size: clamp(72px, 6.35vw, 101px);
  letter-spacing: -0.042em;
  line-height: 1.01;
  position: relative;
  z-index: 2;
}
.hero h1 em {
  color: var(--orange);
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
  max-width: 440px;
  margin-top: 27px;
}
.hero-description strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 5px;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms ease,
    color 180ms ease;
  line-height: 1.4;
}
.button:active {
  transform: scale(0.97);
}
.button svg {
  width: 21px;
  height: 21px;
}
.primary {
  background: var(--green);
  color: var(--paper);
}
.secondary {
  border-color: var(--ink);
  background: transparent;
}
.paper {
  background: var(--paper);
  color: var(--ink);
}
.hero-watch {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-watch > span {
  display: grid;
  place-items: center;
  border: 1px solid #b8beb0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.hero-watch svg {
  width: 18px;
  height: 18px;
}
.free-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 19px;
}
.free-note > span {
  color: var(--green);
  font-size: 15px;
}
.free-note i {
  display: block;
  width: 3px;
  height: 3px;
  background: #979e91;
  border-radius: 50%;
  margin-inline: 2px;
}
.hero-art {
  height: 532px;
  position: relative;
  isolation: isolate;
}
.hero-sun {
  position: absolute;
  width: 415px;
  height: 415px;
  border-radius: 50%;
  background: #efd9b7;
  left: 12%;
  top: 9%;
  z-index: -1;
}
.hero-sun:after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid #f7ecdb;
  border-radius: 50%;
}
.scene {
  position: absolute;
  inset: -10% -10% -1% -8%;
  pointer-events: auto;
}
.scene-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scene canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.orbit-label {
  position: absolute;
  right: 9px;
  top: 57px;
  font-size: 10px;
  letter-spacing: 2.4px;
  writing-mode: vertical-rl;
  transform: rotate(13deg);
}
.hero-word {
  position: absolute;
  left: -6px;
  top: 35px;
  width: 256px;
  padding: 17px 19px 18px;
  background: #fffef7;
  box-shadow: 0 10px 35px #26372c14;
  transform: rotate(-7deg);
  z-index: 2;
  border: 1px solid #e4e1d5;
}
.tiny-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.25px;
  color: var(--muted);
}
.hero-word strong {
  font-family: Instrument, Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  display: block;
  margin-top: 6px;
}
.hero-word strong > span {
  font-family: Karla, sans-serif;
  font-size: 10px;
  color: var(--muted);
  padding-left: 4px;
}
.hero-word p {
  font-size: 12px;
  margin-top: 3px;
}
.word-star {
  position: absolute;
  color: var(--orange);
  font-size: 29px;
  top: 8px;
  right: 13px;
}
.hero-pack {
  position: absolute;
  bottom: 47px;
  right: -5px;
  background: #fffef7;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid #e4e1d5;
  box-shadow: 0 8px 25px #26372c0e;
  transform: rotate(5deg);
  z-index: 2;
}
.hero-pack > span:nth-child(2) {
  font-size: 15px;
  font-weight: 600;
}
.hero-pack small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.pack-icon {
  display: grid;
  place-items: center;
  width: 41px;
  height: 45px;
  background: #eaf0dc;
  border-radius: 4px;
}
.hero-pack > svg {
  width: 21px;
  margin-left: 5px;
}
.handwritten {
  position: absolute;
  bottom: -3px;
  left: 52px;
  font-family: Instrument, Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.03;
  transform: rotate(-10deg);
  color: #768071;
}
.promise-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eeeede;
}
.promise-strip > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.promise-strip span {
  display: flex;
  gap: 38px;
  align-items: center;
  font-size: 14px;
}
.promise-strip span:first-child {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #626e5d;
}
.promise-strip b {
  font-size: 24px;
  font-weight: 400;
  color: #8d9a6a;
}
.library-section {
  padding-block: 90px 80px;
  scroll-margin-top: 20px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading h2 {
  font-size: 62px;
}
.section-heading > p {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.65;
}
.library-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
  gap: 18px;
}
.filter-list {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid transparent;
  border-radius: 4px;
  min-height: 42px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  background: transparent;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}
.filter.active {
  background: var(--ink);
  color: var(--paper);
}
.filter > span {
  padding-left: 9px;
  opacity: 0.65;
}
.search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border-bottom: 1px solid #aab0a2;
  min-height: 42px;
  width: 210px;
  flex-shrink: 0;
}
.search svg {
  width: 18px;
  height: 18px;
}
.search input {
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  font-size: 13px;
  color: var(--ink);
  outline-offset: 9px;
}
.search input::placeholder {
  color: #6b7365;
}
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 28px;
}
.lesson-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card-image {
  display: block;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #e2e5d7;
  border-radius: 5px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms var(--ease-out);
}
.image-play {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #f6f3eaef;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px #0002;
}
.image-play svg {
  width: 22px;
  height: 22px;
}
.pack-number {
  position: absolute;
  top: 11px;
  left: 11px;
  background: #f6f3eaf2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.1px;
  padding: 5px 7px;
  border-radius: 2px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
}
.category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--green);
}
.category > span {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}
.category.debate {
  color: #a95036;
}
.category.speaking {
  color: #71678b;
}
.lesson-card h3 {
  font-size: 21px;
  letter-spacing: -0.45px;
  line-height: 1.3;
  margin-top: 10px;
}
.lesson-card > p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  flex: 1;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 19px;
  padding-top: 12px;
  gap: 10px;
  min-height: 49px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding-block: 8px;
}
.text-link > svg {
  width: 20px;
  height: 20px;
}
.pdf-small {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  min-height: 40px;
  padding-inline: 6px;
}
.pdf-small svg {
  width: 17px;
  height: 17px;
}
.library-footnote {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 43px;
  padding-top: 20px;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}
.library-footnote > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.library-footnote svg {
  width: 15px;
  height: 15px;
}
.empty-state {
  text-align: center;
  padding: 60px;
}
.empty-state h3 {
  font-family: Instrument, serif;
  font-size: 40px;
}
.empty-state p {
  margin: 15px 0 25px;
}
.ritual {
  background: #e8ebdd;
  border-block: 1px solid #d7ddc9;
}
.ritual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-block: 76px 82px;
}
.ritual-intro {
  position: relative;
}
.ritual h2 {
  font-size: 61px;
  margin-top: 18px;
}
.ritual-intro > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 22px;
}
.ritual-spark {
  position: absolute;
  font-size: 91px;
  right: 25px;
  top: 119px;
  color: #84926b;
  font-weight: 400;
  line-height: 1;
  transform: rotate(10deg);
}
.ritual-steps {
  padding-top: 18px;
}
.ritual-steps article {
  display: flex;
  align-items: start;
  gap: 21px;
  padding: 27px 0;
  border-bottom: 1px solid #c6cebb;
}
.ritual-steps article:first-child {
  padding-top: 10px;
}
.ritual-steps article:last-child {
  border: 0;
}
.step-number {
  font:
    italic 33px Instrument,
    Georgia,
    serif;
  color: #859174;
}
.ritual-steps h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.ritual-steps p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
  max-width: 345px;
}
.ritual-steps article > svg {
  margin-left: auto;
  width: 27px;
  height: 27px;
  color: #7a8b68;
}
.word-section {
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.word-intro h2 {
  font-size: 67px;
  margin-top: 15px;
}
.word-intro p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 23px;
}
.word-intro a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.word-taster {
  padding: 29px 36px 27px;
  background: #fffdf6;
  border: 1px solid var(--line);
  box-shadow: 10px 12px 0 #e9e5d7;
  transform: rotate(2deg);
}
.word-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.word-deco {
  font-size: 36px;
  color: var(--orange);
}
.word-taster h3 {
  font:
    400 59px/1.1 Instrument,
    serif;
  letter-spacing: -1px;
  margin-top: 14px;
}
.part-of-speech {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}
.word-example {
  margin-top: 23px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.word-taster > .tiny-label {
  margin-top: 8px;
  font-size: 8px;
}
.word-taster > .text-link {
  margin-top: 24px;
  width: 100%;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
.word-answer {
  padding-top: 14px;
}
.word-answer > p {
  font-size: 16px;
  color: var(--green);
}
.youtube-section {
  padding-bottom: 90px;
}
.youtube-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 57px 65px 59px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.youtube-panel > .eyebrow {
  color: #bac6ac;
}
.youtube-panel h2 {
  font-size: 66px;
  margin-top: 17px;
  position: relative;
  z-index: 1;
}
.youtube-panel h2 em {
  color: #dce3b9;
}
.youtube-panel > p {
  font-size: 15px;
  color: #c6cbbd;
  margin-top: 23px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.youtube-panel > .button {
  margin-top: 27px;
  position: relative;
  z-index: 1;
}
.big-asterisk {
  position: absolute;
  right: 66px;
  top: 38px;
  font-size: 325px;
  line-height: 1;
  color: #aab889;
  transform: rotate(-8deg);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 34px 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top > .brand > span {
  font-size: 19px;
}
.footer-top > .brand > svg {
  width: 40px;
  height: 40px;
}
.footer-top > p {
  font-family: Instrument, Georgia, serif;
  font-size: 25px;
  line-height: 1.15;
  color: var(--ink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 10px;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.lesson-intro {
  max-width: 1050px;
  padding-top: 30px;
  padding-bottom: 42px;
}
.back-link {
  display: inline-block;
  font-size: 13px;
  padding-block: 10px;
  color: var(--muted);
}
.lesson-head-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--muted);
  margin: 31px 0 19px;
}
.lesson-intro h1 {
  font-size: clamp(44px, 4.6vw, 68px);
  max-width: 960px;
  line-height: 1.06;
}
.lesson-intro > p {
  font-size: 18px;
  max-width: 720px;
  margin-top: 22px;
  line-height: 1.6;
}
.lesson-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 27px;
}
.lesson-actions > span {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}
.lesson-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  gap: 65px;
}
.video-preview {
  position: relative;
  background: #1b2c24;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
}
.video-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-start {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 24px #0005;
  white-space: nowrap;
}
.video-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  font-size: 10px;
  margin-top: 10px;
}
.video-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sidebar-inner {
  position: sticky;
  top: 30px;
}
.sidebar-inner > .eyebrow {
  margin-bottom: 20px;
  font-size: 9px;
}
.sidebar-inner > a {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-block: 14px;
  font-size: 13px;
}
.sidebar-inner > a > span {
  font-size: 10px;
  color: var(--muted);
}
.sidebar-inner > a > svg {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.sidebar-pack {
  background: #e7ebda;
  border: 1px solid #d7ddc9;
  padding: 23px;
  margin-top: 22px;
}
.sidebar-pack > svg {
  width: 35px;
  height: 35px;
}
.sidebar-pack h3 {
  font-family: Instrument, Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  margin-top: 17px;
  line-height: 1.07;
}
.sidebar-pack p {
  font-size: 12px;
  margin-top: 13px;
}
.sidebar-pack .button {
  width: 100%;
  font-size: 11px;
  gap: 8px;
  padding-inline: 8px;
  margin-top: 20px;
  min-height: 47px;
}
.level-note {
  font-size: 10px;
  margin-top: 20px;
  line-height: 1.7;
}
.learning-section {
  padding-top: 64px;
}
.learning-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
}
.learning-heading h2 {
  font-size: 46px;
  margin-top: 10px;
}
.learning-heading > span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.section-description {
  font-size: 13px;
  margin-top: 17px;
  max-width: 620px;
}
.vocab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 27px;
}
.vocab-card {
  border: 1px solid var(--line);
  padding: 21px 23px;
  background: #faf9f2;
}
.vocab-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vocab-index {
  font-size: 10px;
  color: var(--muted);
}
.save-word {
  font-size: 11px;
  background: transparent;
  border: 1px solid #d5dbcb;
  min-height: 38px;
  min-width: 70px;
  padding: 7px;
  border-radius: 3px;
}
.save-word[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.vocab-card h3 {
  font:
    400 34px/1.15 Instrument,
    Georgia,
    serif;
  margin-top: 8px;
}
.vocab-card > p {
  font-size: 14px;
  margin-top: 14px;
}
.example {
  border-top: 1px solid var(--line);
  margin-top: 17px;
  padding-top: 13px;
}
.example > .tiny-label {
  font-size: 8px;
}
.example p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 5px;
  color: var(--ink);
}
.saved-status {
  font-size: 11px;
  margin-top: 12px;
  min-height: 18px;
}
.expression-list {
  margin-top: 23px;
}
.expression-list article {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}
.expression-num {
  font:
    italic 25px Instrument,
    Georgia,
    serif;
  color: var(--orange);
}
.expression-list h3 {
  font:
    400 29px Instrument,
    Georgia,
    serif;
}
.expression-list p {
  font-size: 14px;
  margin-top: 10px;
}
.expression-example {
  color: var(--ink);
  border-left: 2px solid #b7c59e;
  padding-left: 14px;
}
.expression-example > span {
  display: block;
  letter-spacing: 1px;
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 5px;
}
.transcript {
  margin-top: 26px;
  padding: 30px 34px;
  background: #fdfbf5;
  border: 1px solid var(--line);
}
.transcript p {
  font-size: 16px;
  line-height: 1.85;
  color: #414c3e;
  margin-bottom: 21px;
  white-space: pre-line;
}
.transcript p:last-child {
  margin-bottom: 0;
}
.speaker {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.transcript-note {
  background: #e8ecdd;
  padding: 14px 18px;
  font-size: 12px;
  margin-top: 18px;
}
.speaking-prompts {
  background: #e8ebdc;
  border: 1px solid #d7ddc9;
  padding: 34px;
  margin-top: 56px;
}
.speaking-prompts h2 {
  font-size: 46px;
  margin-top: 12px;
}
.speaking-prompts > p {
  font-size: 14px;
  margin-top: 17px;
}
.prompt {
  display: flex;
  gap: 17px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #cbd3bd;
}
.prompt > span {
  font-size: 12px;
  color: var(--muted);
}
.prompt > p {
  font-size: 18px;
  color: var(--ink);
}
.speaking-prompts > .text-link {
  margin-top: 20px;
  font-size: 11px;
}
.related {
  padding-block: 85px;
}
.related h2 {
  font-size: 52px;
  margin-top: 12px;
  margin-bottom: 33px;
}
.text-page {
  max-width: 840px;
  min-height: 70vh;
  padding-block: 30px 100px;
}
.text-page > .eyebrow {
  margin-top: 38px;
}
.text-page h1 {
  font-size: 76px;
  margin-top: 19px;
}
.text-page .lead {
  font-size: 23px;
  margin-top: 24px;
}
.prose {
  margin-top: 50px;
}
.prose h2 {
  font-size: 34px;
  margin-top: 30px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.prose p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.prose .button {
  margin-top: 20px;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--orange);
  }
  .primary:hover {
    background: #36553f;
    color: var(--paper);
  }
  .paper:hover {
    background: #e3e8d3;
    color: var(--ink);
  }
  .secondary:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .card-image:hover img {
    transform: scale(1.025);
  }
  .card-image:hover {
    color: var(--ink);
  }
  .filter:not(.active):hover {
    background: #e7e9dd;
  }
  .save-word:hover {
    border-color: var(--green);
  }
  .hero-pack:hover {
    color: var(--ink);
  }
  .video-start:hover {
    background: #e8ecdc;
  }
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: arrive 600ms var(--ease-out) both;
  }
  .hero-art {
    animation: arrive 700ms var(--ease-out) 60ms both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (min-width: 1600px) {
  .wrap {
    width: min(1390px, calc(100% - 140px));
  }
  .hero {
    min-height: 715px;
  }
  .hero h1 {
    font-size: 111px;
  }
  .hero-art {
    height: 565px;
  }
  .hero-sun {
    width: 455px;
    height: 455px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    gap: 20px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 13px;
  }
  .brand > span {
    font-size: 18px;
  }
  .header-youtube {
    font-size: 12px;
  }
  .hero {
    min-height: 605px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 385px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-watch {
    font-size: 11px;
  }
  .hero .button {
    padding-inline: 16px;
    font-size: 12px;
    gap: 9px;
  }
  .hero-art {
    height: 460px;
  }
  .hero-sun {
    width: 340px;
    height: 340px;
    left: 10%;
    top: 14%;
  }
  .hero-word {
    width: 231px;
    left: -7px;
    top: 34px;
    padding: 14px;
  }
  .hero-pack {
    right: -5px;
    bottom: 32px;
    gap: 9px;
    padding: 12px;
  }
  .hero-pack > span:nth-child(2) {
    font-size: 13px;
  }
  .orbit-label {
    right: 2px;
  }
  .handwritten {
    bottom: 0;
    left: 20px;
    font-size: 19px;
  }
  .promise-strip span {
    font-size: 12px;
    gap: 15px;
  }
  .promise-strip span:first-child {
    font-size: 8px;
  }
  .section-heading h2 {
    font-size: 55px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .filter {
    padding: 10px 9px;
    font-size: 11px;
  }
  .search {
    width: 180px;
  }
  .lesson-card h3 {
    font-size: 18px;
  }
  .ritual-inner,
  .word-section {
    gap: 55px;
  }
  .ritual-spark {
    right: 5px;
    font-size: 70px;
  }
  .ritual h2 {
    font-size: 56px;
  }
  .lesson-body {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 235px;
  }
  .sidebar-pack {
    padding: 17px;
  }
  .big-asterisk {
    right: 25px;
    font-size: 275px;
    top: 75px;
  }
}
@media (max-width: 900px) {
  .site-header nav {
    gap: 15px;
  }
  .site-header nav a:last-child {
    display: none;
  }
  .header-youtube > span {
    display: none;
  }
  .header-youtube > svg:last-child {
    display: none;
  }
  .site-header {
    height: 94px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-block: 48px;
    min-height: 520px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.25px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 20px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 22px;
  }
  .free-note {
    font-size: 9px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .hero-art {
    height: 380px;
  }
  .hero-sun {
    width: 280px;
    height: 280px;
    left: 9%;
    top: 11%;
  }
  .hero-word {
    width: 196px;
    padding: 12px;
    top: 14px;
  }
  .hero-word .tiny-label {
    font-size: 7px;
  }
  .hero-word strong {
    font-size: 25px;
  }
  .hero-word strong span {
    font-size: 8px;
  }
  .hero-word p {
    font-size: 10px;
  }
  .word-star {
    font-size: 21px;
    top: 7px;
    right: 8px;
  }
  .hero-pack {
    bottom: 15px;
    right: -5px;
    padding: 10px;
    gap: 8px;
  }
  .hero-pack > span:nth-child(2) {
    font-size: 11px;
  }
  .hero-pack small {
    font-size: 9px;
  }
  .pack-icon {
    width: 32px;
    height: 36px;
  }
  .hero-pack > svg {
    width: 16px;
  }
  .handwritten {
    font-size: 17px;
    left: 4px;
    bottom: -25px;
  }
  .orbit-label {
    font-size: 8px;
    right: -6px;
    top: 37px;
  }
  .promise-strip > .wrap {
    min-height: 62px;
    gap: 10px;
  }
  .promise-strip span:first-child {
    display: none;
  }
  .promise-strip span {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 48px;
  }
  .library-section {
    padding-top: 65px;
  }
  .library-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .search {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0 13px;
  }
  .filter-list {
    gap: 6px;
  }
  .filter {
    padding: 10px 14px;
    font-size: 12px;
  }
  .lesson-grid {
    gap: 35px 20px;
  }
  .lesson-card h3 {
    font-size: 17px;
  }
  .card-meta {
    font-size: 9px;
  }
  .category {
    font-size: 8px;
  }
  .lesson-card > p {
    font-size: 12px;
  }
  .card-bottom .text-link {
    font-size: 11px;
    gap: 5px;
  }
  .pdf-small {
    font-size: 10px;
    gap: 4px;
  }
  .card-bottom .text-link svg {
    width: 16px;
  }
  .library-footnote {
    font-size: 10px;
  }
  .ritual-inner {
    gap: 40px;
  }
  .ritual h2 {
    font-size: 49px;
  }
  .ritual-spark {
    display: none;
  }
  .ritual .eyebrow {
    font-size: 9px;
  }
  .ritual-steps {
    padding-top: 4px;
  }
  .ritual-steps article {
    gap: 14px;
    padding-block: 23px;
  }
  .ritual-steps h3 {
    font-size: 18px;
  }
  .ritual-steps p {
    font-size: 12px;
  }
  .ritual-steps article > svg {
    display: none;
  }
  .word-section {
    gap: 42px;
    padding-block: 80px;
  }
  .word-intro h2 {
    font-size: 53px;
  }
  .word-intro p:not(.eyebrow) {
    font-size: 13px;
  }
  .word-taster {
    padding: 22px 25px;
  }
  .word-taster h3 {
    font-size: 48px;
  }
  .word-example {
    font-size: 15px;
  }
  .youtube-panel {
    padding: 45px;
  }
  .youtube-panel h2 {
    font-size: 57px;
  }
  .big-asterisk {
    font-size: 210px;
    right: 20px;
    top: 102px;
  }
  .youtube-panel > p {
    max-width: 350px;
    font-size: 14px;
  }
  .footer-top > p {
    font-size: 21px;
  }
  .footer-top > .text-link {
    font-size: 11px;
  }
  .lesson-body {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 27px;
  }
  .sidebar-pack {
    padding: 16px;
  }
  .sidebar-pack h3 {
    font-size: 27px;
  }
  .sidebar-pack .button {
    font-size: 9px;
  }
  .lesson-intro {
    max-width: none;
  }
  .lesson-intro h1 {
    font-size: 49px;
  }
  .vocab-card {
    padding: 16px;
  }
  .vocab-card h3 {
    font-size: 29px;
  }
  .learning-heading h2 {
    font-size: 38px;
  }
  .learning-heading > span {
    display: none;
  }
  .transcript {
    padding: 23px;
  }
  .transcript p {
    font-size: 15px;
  }
  .lesson-actions .button {
    font-size: 12px;
  }
  .speaking-prompts {
    padding: 25px;
  }
}
@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 85px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand > svg {
    width: 34px;
    height: 34px;
  }
  .brand > span {
    font-size: 16px;
    letter-spacing: -0.65px;
  }
  .site-header nav {
    margin-left: auto;
  }
  .site-header nav > a {
    font-size: 11px;
  }
  .site-header nav > a:nth-child(2) {
    display: none;
  }
  .header-youtube {
    border: 1px solid #c8cebd;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
  }
  .header-youtube > svg:first-child {
    border: 0;
    width: 21px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 37px;
    padding-bottom: 43px;
    gap: 0;
    min-height: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 19px;
    gap: 8px;
  }
  .sun-symbol {
    font-size: 23px;
  }
  .hero h1 {
    font-size: clamp(56px, 13.4vw, 83px);
    letter-spacing: -0.035em;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 430px;
    margin-top: 21px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 25px;
    flex-wrap: nowrap;
  }
  .hero .button {
    font-size: 11px;
    padding: 13px 15px;
    min-height: 49px;
    gap: 9px;
  }
  .hero-watch {
    font-size: 10px;
    gap: 6px;
  }
  .hero-watch > span {
    width: 27px;
    height: 27px;
  }
  .free-note {
    font-size: 9px;
    margin-top: 14px;
    gap: 7px;
    flex-wrap: nowrap;
  }
  .hero-art {
    margin-top: 34px;
    height: 365px;
    width: min(100%, 420px);
    align-self: center;
  }
  .hero-sun {
    width: 290px;
    height: 290px;
    left: calc(50% - 145px);
    top: 25px;
  }
  .scene {
    inset: -10% -9% -7% -9%;
  }
  .hero-word {
    top: 8px;
    left: 0;
    width: 201px;
    transform: rotate(-6deg);
  }
  .hero-pack {
    bottom: 4px;
    right: 0;
  }
  .hero-pack > span:nth-child(2) {
    font-size: 12px;
  }
  .hero-pack small {
    font-size: 10px;
  }
  .handwritten {
    bottom: -22px;
    left: 4px;
    font-size: 17px;
  }
  .orbit-label {
    right: -2px;
    top: 33px;
  }
  .promise-strip > .wrap {
    justify-content: space-between;
    min-height: 53px;
    gap: 9px;
  }
  .promise-strip span {
    font-size: 10px;
    gap: 11px;
  }
  .promise-strip span:nth-child(4) {
    display: none;
  }
  .promise-strip span:nth-child(3) > b {
    display: none;
  }
  .promise-strip b {
    font-size: 17px;
  }
  .library-section {
    padding-block: 51px 46px;
  }
  .section-heading {
    display: block;
    margin-bottom: 23px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 13px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 17px;
    line-height: 1.6;
  }
  .section-heading > p br {
    display: none;
  }
  .library-tools {
    gap: 17px;
    margin-bottom: 25px;
    padding-bottom: 21px;
  }
  .filter-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .filter {
    padding: 10px 9px;
    min-height: 42px;
    font-size: 11px;
    border-color: var(--line);
  }
  .search {
    min-height: 43px;
  }
  .lesson-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .lesson-card h3 {
    font-size: 21px;
    margin-top: 11px;
  }
  .lesson-card > p {
    font-size: 14px;
    line-height: 1.6;
  }
  .card-meta {
    font-size: 11px;
    margin-top: 17px;
  }
  .category {
    font-size: 9px;
  }
  .card-bottom .text-link {
    font-size: 13px;
  }
  .pdf-small {
    font-size: 12px;
  }
  .card-bottom {
    padding-top: 9px;
    margin-top: 15px;
  }
  .card-image {
    border-radius: 4px;
  }
  .pack-number {
    font-size: 8px;
  }
  .library-footnote {
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    margin-top: 30px;
  }
  .ritual-inner {
    grid-template-columns: 1fr;
    padding-block: 47px;
    gap: 28px;
  }
  .ritual h2 {
    font-size: 48px;
    margin-top: 15px;
  }
  .ritual h2 br:last-child {
    display: none;
  }
  .ritual-intro > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 19px;
  }
  .ritual-intro > p:not(.eyebrow) br {
    display: none;
  }
  .ritual-steps article {
    padding-block: 22px;
    gap: 19px;
  }
  .ritual-steps h3 {
    font-size: 20px;
  }
  .ritual-steps p {
    font-size: 13px;
    max-width: none;
  }
  .step-number {
    font-size: 31px;
  }
  .ritual-steps article:last-child {
    padding-bottom: 0;
  }
  .word-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 51px 59px;
  }
  .word-intro h2 {
    font-size: 48px;
  }
  .word-intro .eyebrow {
    font-size: 9px;
  }
  .word-intro p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 17px;
  }
  .word-taster {
    margin: 0 8px 0 3px;
    padding: 24px 28px;
    transform: rotate(1.5deg);
  }
  .word-taster h3 {
    font-size: 51px;
  }
  .word-example {
    font-size: 16px;
    margin-top: 16px;
  }
  .word-taster > .text-link {
    margin-top: 20px;
  }
  .youtube-section {
    padding-bottom: 50px;
  }
  .youtube-panel {
    padding: 35px 25px 38px;
  }
  .youtube-panel > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .youtube-panel h2 {
    font-size: 46px;
    margin-top: 16px;
  }
  .youtube-panel > p {
    font-size: 13px;
    margin-top: 19px;
    max-width: 245px;
  }
  .youtube-panel > p br {
    display: none;
  }
  .youtube-panel > .button {
    font-size: 12px;
    gap: 11px;
    margin-top: 23px;
    min-height: 49px;
  }
  .big-asterisk {
    font-size: 150px;
    top: auto;
    bottom: 40px;
    right: -51px;
    opacity: 0.32;
  }
  .site-footer {
    padding-block: 26px 22px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 10px;
  }
  .footer-top > .brand > span {
    font-size: 16px;
  }
  .footer-top > .brand > svg {
    width: 32px;
    height: 32px;
  }
  .footer-top > p {
    font-size: 20px;
    text-align: right;
  }
  .footer-top > .text-link {
    font-size: 11px;
    grid-column: span 2;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 9px;
    margin-top: 17px;
    padding-top: 18px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > div {
    margin-left: auto;
    gap: 15px;
  }
  .lesson-intro {
    padding-top: 18px;
    padding-bottom: 30px;
  }
  .back-link {
    font-size: 11px;
  }
  .lesson-head-meta {
    gap: 13px;
    font-size: 10px;
    flex-wrap: wrap;
    margin-top: 23px;
  }
  .lesson-intro h1 {
    font-size: 43px;
  }
  .lesson-intro > p {
    font-size: 15px;
    margin-top: 17px;
  }
  .lesson-actions {
    flex-direction: column;
    align-items: start;
    gap: 12px;
    margin-top: 22px;
  }
  .lesson-actions > .button {
    width: 100%;
    font-size: 13px;
  }
  .lesson-actions > span {
    font-size: 10px;
  }
  .lesson-actions > span br {
    display: none;
  }
  .lesson-body {
    display: block;
  }
  .lesson-sidebar {
    display: none;
  }
  .video-start {
    font-size: 11px;
    padding: 11px 15px;
  }
  .video-note {
    font-size: 9px;
    line-height: 1.7;
  }
  .learning-section {
    padding-top: 40px;
  }
  .learning-heading h2 {
    font-size: 37px;
  }
  .learning-heading .eyebrow {
    font-size: 9px;
  }
  .section-description {
    font-size: 12px;
    margin-top: 14px;
  }
  .vocab-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 21px;
  }
  .vocab-card {
    padding: 19px 22px;
  }
  .vocab-card h3 {
    font-size: 35px;
  }
  .vocab-card > p {
    font-size: 14px;
  }
  .save-word {
    min-height: 44px;
    min-width: 75px;
    font-size: 12px;
  }
  .example p {
    font-size: 13px;
  }
  .expression-list article {
    gap: 15px;
    padding-block: 23px;
  }
  .expression-list h3 {
    font-size: 27px;
  }
  .expression-list p {
    font-size: 13px;
  }
  .transcript {
    padding: 23px 21px;
    margin-top: 22px;
  }
  .transcript p {
    font-size: 15px;
    line-height: 1.8;
  }
  .speaking-prompts {
    padding: 25px 22px;
    margin-top: 37px;
  }
  .speaking-prompts h2 {
    font-size: 39px;
  }
  .speaking-prompts > p {
    font-size: 13px;
  }
  .prompt > p {
    font-size: 16px;
  }
  .prompt {
    gap: 12px;
  }
  .speaking-prompts > .text-link {
    font-size: 10px;
    gap: 7px;
    align-items: start;
  }
  .related {
    padding-block: 50px;
  }
  .related h2 {
    font-size: 41px;
    margin-bottom: 27px;
  }
  .text-page {
    padding-block: 20px 60px;
  }
  .text-page > .eyebrow {
    margin-top: 26px;
  }
  .text-page h1 {
    font-size: 56px;
  }
  .text-page .lead {
    font-size: 21px;
  }
  .prose {
    margin-top: 35px;
  }
  .prose p {
    font-size: 15px;
  }
  .prose h2 {
    font-size: 30px;
  }
}
.hero {
  overflow: visible;
}
.scene {
  right: 0;
}
.transcript h3 {
  font:
    400 29px/1.2 Instrument,
    Georgia,
    serif;
  margin: 30px 0 18px;
  color: var(--ink);
}
.transcript h3:first-child {
  margin-top: 0;
}
.mobile-lesson-nav {
  display: none;
}
@media (max-width: 650px) {
  .orbit-label {
    right: 9px;
  }
  .mobile-lesson-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0 10px;
  }
  .mobile-lesson-nav a {
    font-size: 10px;
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 3px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-actions {
    gap: 11px;
    flex-wrap: wrap;
  }
  .hero-watch {
    font-size: 11px;
  }
  .free-note {
    font-size: 8px;
    gap: 5px;
  }
  .hero-art {
    height: 340px;
  }
  .hero-sun {
    width: 270px;
    height: 270px;
    left: calc(50% - 135px);
  }
  .site-header nav > a {
    font-size: 10px;
  }
  .brand > span {
    font-size: 14px;
  }
  .brand > svg {
    width: 31px;
  }
  .promise-strip span {
    font-size: 9px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
}
.filter,
.pdf-small,
.hero-watch {
  min-height: 44px;
}
@media (max-width: 650px) {
  .header-youtube {
    width: 44px;
    height: 44px;
  }
  .site-header nav > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .button:active,
  .card-image:hover img {
    transform: none;
  }
}

/* Membership is optional: the study library stays the first action. */
.header-members {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
}
.member-signin,
.member-join {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.member-join {
  gap: 13px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 5px;
}
.member-join svg {
  width: 18px;
}
.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 9%;
  align-items: center;
  padding-block: 96px;
  border-top: 1px solid var(--line);
}
.newsletter-copy h2 {
  font-size: clamp(46px, 4.6vw, 68px);
  margin-block: 24px;
}
.newsletter-copy > p:last-child {
  max-width: 430px;
  line-height: 1.75;
}
.newsletter-invite {
  position: relative;
  padding: 36px;
  background: #edeede;
  border: 1px solid #d5d9c8;
  border-radius: 7px;
}
.newsletter-stamp {
  position: absolute;
  top: 21px;
  right: 25px;
  color: var(--orange);
  font-size: 47px;
  line-height: 1;
}
.newsletter-status {
  max-width: calc(100% - 40px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}
.newsletter-invite h3 {
  margin-block: 16px 13px;
  font: 42px/1.06 Instrument, Georgia, serif;
  letter-spacing: -0.025em;
}
.newsletter-invite > p:not(.newsletter-status) {
  font-size: 15px;
}
.newsletter-invite .button {
  margin-block: 23px 18px;
}
.newsletter-invite .newsletter-privacy {
  font-size: 11px !important;
  line-height: 1.8;
}
.newsletter-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) {
  .member-join:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .member-signin:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
@media (max-width: 1150px) {
  .header-members {
    gap: 15px;
    font-size: 13px;
  }
  .member-join {
    padding-inline: 13px;
    gap: 8px;
  }
  .newsletter-section {
    gap: 5%;
  }
  .newsletter-invite {
    padding: 28px;
  }
}
@media (max-width: 950px) {
  .site-header nav {
    display: none;
  }
}
@media (max-width: 650px) {
  .header-members {
    gap: 13px;
    font-size: 11px;
  }
  .member-join {
    padding-inline: 10px;
  }
  .member-join svg {
    display: none;
  }
  .newsletter-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 58px;
  }
  .newsletter-copy h2 {
    margin-block: 18px;
    font-size: 45px;
  }
  .newsletter-copy > p:last-child {
    font-size: 15px;
  }
  .newsletter-invite {
    padding: 25px;
  }
  .newsletter-invite .button {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

/* First visits and return visits: useful content before an invitation to join. */
.hero-start-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; margin-top: 8px; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.hero-start-link svg { width: 18px; }
.saved-count { display: inline-flex; align-items: center; justify-content: center; min-width: 19px; height: 19px; padding-inline: 5px; margin-left: 4px; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 10px; }
.first-visit { padding-block: 60px 10px; }
.first-visit-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px; }
.first-visit-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; background: #efedde; }
.first-visit-image { position: relative; align-self: stretch; display: flex; align-items: center; background: #dfe6d9; min-height: 350px; }
.first-visit-image > img { width: 100%; height: auto; object-fit: contain; }
.first-visit-image > span { position: absolute; bottom: 20px; left: 22px; display: flex; gap: 8px; align-items: center; padding: 8px 13px; border-radius: 4px; background: var(--paper); font-size: 12px; }
.first-visit-image > span svg { width: 16px; height: 16px; }
.first-visit-copy { padding: 34px 40px; }
.first-visit-copy .card-meta { margin-top: 0; }
.first-visit h2 { margin-block: 17px 18px; font-size: clamp(35px, 3.8vw, 55px); line-height: 1.05; }
.first-visit h2 em { color: var(--orange); }
.first-visit-topic { font-size: 14px; max-width: 420px; }
.first-visit-topic a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.pack-contents { display: flex; list-style: none; margin: 23px 0; padding: 17px 0; border-block: 1px solid #d5d5c4; }
.pack-contents li { flex: 1; display: flex; flex-direction: column; gap: 3px; padding-right: 10px; }
.pack-contents li + li { padding-left: 20px; border-left: 1px solid #d5d5c4; }
.pack-contents strong { font-family: Instrument, Georgia, serif; font-weight: 400; font-size: 30px; line-height: 1; }
.pack-contents span { font-size: 11px; color: var(--muted); }
.first-visit-note { font-size: 11px; margin-top: 13px; }
.section-description a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.start-page, .saved-page { padding-block: 40px 70px; }
.start-heading { display: grid; grid-template-columns: 1.6fr 1fr; align-items: end; gap: 45px; padding-block: 45px 50px; }
.start-heading h1 { font-size: clamp(48px, 5.5vw, 79px); margin-top: 23px; }
.start-heading h1 em, .saved-heading h1 em { color: var(--orange); }
.start-heading > p { font-size: 16px; line-height: 1.9; padding-bottom: 5px; }
.start-paths { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.start-path { padding: 30px; position: relative; min-width: 0; display: flex; flex-direction: column; }
.start-path + .start-path { border-left: 1px solid var(--line); }
.start-path.debate { background: #efedde; }
.path-number { font: italic 24px Instrument, Georgia, serif; color: var(--orange); margin-bottom: 25px; }
.start-path h2 { font-size: 43px; margin-block: 20px 15px; min-height: 90px; }
.start-path > p:not(.path-first-step) { font-size: 14px; min-height: 46px; }
.path-image { margin-top: 25px; border-radius: 4px; overflow: hidden; }
.path-image img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.path-meta { font-size: 11px; margin-block: 15px 10px; color: var(--muted); }
.start-path h3 { font-size: 21px; min-height: 54px; }
.path-first-step { margin-top: 25px; border-top: 1px solid var(--line); padding-top: 20px; font-size: 13px; }
.path-first-step strong { display: block; margin-bottom: 9px; font-size: 9px; letter-spacing: .1em; color: var(--ink); }
.start-path > .text-link { margin-top: auto; padding-top: 20px; font-size: 12px; }
.start-keepsake { display: grid; grid-template-columns: 75px 1.2fr 1fr; gap: 35px; margin-block: 65px 30px; padding-block: 40px; border-block: 1px solid var(--line); }
.keepsake-icon { color: var(--orange); font-size: 73px; line-height: 1; }
.start-keepsake h2 { margin-block: 17px 20px; font-size: 43px; }
.start-keepsake p:not(.eyebrow):not(.tiny-label) { max-width: 440px; font-size: 14px; }
.start-keepsake .text-link { margin-top: 14px; }
.start-keepsake aside { border-left: 1px solid var(--line); padding-left: 38px; align-self: center; }
.start-keepsake ul { padding-left: 18px; font-size: 14px; color: var(--muted); line-height: 2; }
.level-guide { max-width: 790px; font-size: 12px; }
.saved-heading { padding-block: 40px 25px; }
.saved-heading h1 { margin-block: 20px 25px; font-size: clamp(57px, 6vw, 84px); }
.saved-heading > p:not(.eyebrow) { font-size: 17px; line-height: 1.8; }
.saved-device-note { display: inline-block; font-size: 11px; margin-top: 22px; color: var(--muted); }
.saved-review-count { padding-block: 17px; margin-top: 12px; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; }
.saved-empty { text-align: center; border: 1px solid var(--line); border-radius: 6px; padding: 45px 25px; background: #efedde; }
.saved-empty > span { color: var(--orange); font-size: 55px; line-height: 1; }
.saved-empty h2 { font-size: 44px; margin-block: 20px 18px; }
.saved-empty p { max-width: 450px; margin-inline: auto; font-size: 15px; }
.saved-empty .button { margin-top: 25px; }
.saved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.saved-review-card { border: 1px solid var(--line); padding: 25px; border-radius: 6px; min-width: 0; display: flex; flex-direction: column; }
.saved-review-card .category { font-size: 8px; }
.saved-review-card .vocab-top { margin-bottom: 24px; }
.saved-review-card h2 { font-size: 39px; overflow-wrap: anywhere; }
.saved-review-card details { margin-block: 20px; border-block: 1px solid var(--line); }
.saved-review-card summary { padding-block: 14px; cursor: pointer; font-size: 13px; min-height: 48px; }
.saved-review-card summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.saved-review-card details > p { padding-block: 0 15px; font-size: 14px; }
.saved-review-card .example { margin-top: 0; padding-bottom: 18px; }
.saved-review-card .example p { font-size: 13px; }
.saved-source { margin-top: auto; display: flex; justify-content: space-between; gap: 10px; font-size: 11px; min-height: 44px; align-items: center; }
.saved-source svg { width: 18px; }
.saved-footer-note { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.saved-footer-note > p { max-width: 700px; font-size: 12px; }
.saved-noscript { padding: 25px; background: #efedde; border: 1px solid var(--line); }
.saved-noscript a { text-decoration: underline; }
@media (hover: hover) {
  .start-path h3 a:hover, .saved-source:hover { text-decoration: underline; text-underline-offset: 4px; }
}
@media (max-width: 1100px) {
  .first-visit-copy { padding: 27px; }
  .start-heading { grid-template-columns: 1.5fr 1fr; gap: 25px; }
  .start-heading h1 { font-size: 58px; }
  .start-heading > p { font-size: 14px; }
  .start-path { padding: 22px; }
  .start-path h2 { font-size: 36px; min-height: 76px; }
  .start-path h3 { font-size: 19px; }
  .start-keepsake { grid-template-columns: 45px 1.2fr 1fr; gap: 20px; }
  .keepsake-icon { font-size: 45px; }
  .start-keepsake h2 { font-size: 36px; }
  .saved-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 750px) {
  .first-visit-grid { grid-template-columns: 1fr; }
  .first-visit-image { min-height: 0; }
  .first-visit-image > img { aspect-ratio: 16/9; }
  .first-visit-copy { padding: 28px; }
  .first-visit h2 { font-size: 45px; }
  .first-visit-top .text-link { font-size: 11px; }
  .start-heading { grid-template-columns: 1fr; gap: 22px; padding-block: 35px; }
  .start-heading h1 { font-size: 58px; }
  .start-heading > p br { display: none; }
  .start-paths { grid-template-columns: 1fr; }
  .start-path { padding: 27px; }
  .start-path + .start-path { border-left: 0; border-top: 1px solid var(--line); }
  .start-path h2 { font-size: 43px; min-height: 0; }
  .start-path h3 { min-height: 0; font-size: 22px; }
  .start-path > p:not(.path-first-step) { min-height: 0; }
  .path-number { margin-bottom: 18px; }
  .start-keepsake { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .start-keepsake aside { border-left: 0; border-top: 1px solid var(--line); padding: 25px 0 0; }
  .saved-footer-note { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .first-visit { padding-top: 35px; }
  .first-visit-top { gap: 10px; }
  .first-visit-top .eyebrow { font-size: 9px; }
  .first-visit-top .text-link { gap: 6px; font-size: 10px; }
  .first-visit-top svg { width: 17px; }
  .first-visit-copy { padding: 24px; }
  .first-visit h2 { font-size: 39px; }
  .pack-contents li + li { padding-left: 14px; }
  .pack-contents span { font-size: 10px; }
  .start-page, .saved-page { padding-top: 28px; }
  .start-heading h1 { font-size: 47px; }
  .start-path { padding: 24px; }
  .start-path h2 { font-size: 39px; }
  .saved-grid { grid-template-columns: 1fr; }
  .saved-empty h2 { font-size: 36px; }
  .saved-empty p { font-size: 14px; }
  .saved-heading > p:not(.eyebrow) { font-size: 15px; }
}
.mobile-learning-nav { display: none; }
@media (max-width: 950px) {
  .mobile-learning-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
  .mobile-learning-nav a { display: inline-flex; align-items: center; min-height: 48px; font-size: 12px; font-weight: 600; }
}
@media (max-width: 370px) {
  .mobile-learning-nav a { font-size: 11px; }
}
