@font-face {
  font-family: Hanken;
  src: url("/assets/fonts/hanken-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Hanken;
  src: url("/assets/fonts/hanken-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Hanken;
  src: url("/assets/fonts/hanken-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Hanken;
  src: url("/assets/fonts/hanken-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --canvas: #fafaf8;
  --text: #202a33;
  --body: #4d5b67;
  --muted: #626d77;
  --blue: #254cf0;
  --tint: #edf1fc;
  --line: #dde1e5;
  --warm: #eeeae2;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--canvas);
  font:
    400 16px/1.6 Hanken,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
::selection {
  background: var(--blue);
  color: white;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
section {
  scroll-margin-top: 20px;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: var(--blue);
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.blue {
  color: var(--blue);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.square {
  width: 6px;
  height: 6px;
  background: var(--blue);
}
.small-label {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
h2,
.section-heading h2 {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 600;
  letter-spacing: -2.2px;
  line-height: 1.04;
}
.section-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--body);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--blue);
  padding-block: 12px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 17px 23px;
  min-height: 56px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #1c3ed0;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px #254cf014;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-small {
  font-size: 14px;
  min-height: 44px;
  padding: 11px 17px;
  gap: 18px;
}
.button-outline {
  background: transparent;
  color: var(--blue);
}
.button-outline:hover {
  background: var(--tint);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand span {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1;
}
.brand-small span {
  font-size: 23px;
}
.site-header {
  background: rgba(250, 250, 248, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a,
.sign-in {
  padding-block: 12px;
}
.nav-links a:hover,
.sign-in:hover {
  color: var(--blue);
}
.nav-actions {
  gap: 24px;
}
/* The trade in the photograph; the teaching in the inset. */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  padding-block: 66px 70px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(64px, 6.65vw, 88px);
  line-height: 0.99;
  letter-spacing: -4.5px;
  font-weight: 600;
}
.hero h1 > span {
  color: var(--blue);
}
.hero-description {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  max-width: 425px;
  margin-block: 26px 29px;
}
.hero .eyebrow {
  margin-bottom: 24px;
}
.action-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.hero-visual {
  position: relative;
  padding-bottom: 54px;
}
.hero-photo {
  height: 555px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm);
}
.hero-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #122d3900 45%, #182d4080 100%);
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 119px;
  left: 28px;
  right: 28px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 500;
  color: white;
  letter-spacing: -0.3px;
}
.photo-cross {
  font-size: 35px;
  font-weight: 400;
}
.lesson-peek {
  position: absolute;
  bottom: 30px;
  left: -34px;
  right: 36px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 35px #1628400e;
  padding: 19px 24px;
  transition: transform 0.2s;
}
.lesson-peek:hover {
  transform: translateY(-4px);
}
.peek-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
}
.peek-top > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.peek-top .icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
}
.peek-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}
.peek-content h2 {
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-top: 5px;
}
.peek-bottom {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.peek-content img {
  width: 135px;
  height: 125px;
  object-fit: contain;
}
.photo-credit {
  position: absolute;
  bottom: 1px;
  right: 0;
  font-size: 10px;
  color: var(--muted);
}
.course-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-block: 1px solid var(--line);
  padding-block: 24px;
  gap: 28px;
}
.course-strip p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}
.course-strip p:nth-child(2) {
  justify-self: center;
}
.course-strip p:last-child {
  justify-self: end;
}
.course-strip .icon {
  color: var(--blue);
  width: 20px;
  height: 20px;
}
/* Learning story and the working lesson. */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 100px;
}
.intro-body {
  padding-top: 40px;
}
.intro-body > p:not(.section-lead) {
  color: var(--body);
  margin-top: 18px;
}
.intro-body .text-link {
  margin-top: 17px;
}
.learning-steps {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.learning-steps li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-number {
  color: var(--blue);
  font-size: 13px;
}
.learning-steps h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-block: 24px 11px;
}
.learning-steps p {
  font-size: 15px;
  color: var(--body);
  max-width: 320px;
}
.sample-section {
  background: var(--tint);
  padding-block: 96px;
}
.sample-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 110px;
  align-items: center;
}
.sample-copy h2 {
  font-size: clamp(44px, 4.6vw, 62px);
}
.sample-copy .section-lead {
  margin-top: 25px;
}
.sample-copy > p:not(.eyebrow):not(.section-lead) {
  color: var(--body);
  margin-top: 18px;
}
.sample-caption {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 37px;
  font-size: 12px;
  color: var(--body);
}
.sample-caption strong {
  font-weight: 500;
  color: var(--blue);
}
.line-mark {
  height: 35px;
  width: 3px;
  background: var(--blue);
}
.lesson-demo {
  background: var(--canvas);
  border: 1px solid #cdd5eb;
  border-radius: 16px;
  box-shadow: 0 14px 45px #20336509;
  overflow: hidden;
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 20px 28px;
}
.demo-header > span {
  font-size: 12px;
  color: var(--muted);
}
.demo-content {
  padding: 28px;
}
.demo-content > h3 {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -1.1px;
  line-height: 1.12;
  margin-block: 10px 15px;
}
.demo-content > p:not(.small-label) {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}
.demo-content > p strong {
  font-weight: 600;
  color: var(--text);
}
.demo-content > .assumption {
  font-size: 12px !important;
  margin-top: 10px;
  color: var(--muted) !important;
}
.contract-choices {
  border: 0;
  margin: 23px 0 19px;
  padding: 0;
  min-width: 0;
}
.contract-choices legend {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 9px;
  padding: 0;
}
.contract-choices > div {
  display: flex;
  gap: 9px;
}
.contract-choices label {
  position: relative;
  flex: 1;
  cursor: pointer;
}
.contract-choices input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.contract-choices label > span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-align: center;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 500;
}
.contract-choices input:checked + span {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--tint);
}
.contract-choices input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.answer-prompt {
  font-size: 13px !important;
  font-weight: 600;
  color: var(--text) !important;
  margin-bottom: 11px;
}
.answer-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.answer-option {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  text-align: left;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.answer-option:hover:not(:disabled) {
  border-color: var(--blue);
  background: #f5f7ff;
}
.answer-option:disabled {
  cursor: default;
  opacity: 1;
  color: var(--text);
}
.answer-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--body);
}
.answer-circle {
  border: 1px solid #89939e;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
}
.answer-option strong {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-block: 14px;
}
.bar-track {
  display: block;
  height: 5px;
  border-radius: 2px;
  background: var(--tint);
  overflow: hidden;
}
.bar-track > span {
  display: block;
  height: 100%;
  background: #b9c6e6;
  border-radius: 2px;
  transition: width 0.2s;
}
.answer-option.is-correct {
  background: var(--tint);
  border-color: var(--blue);
}
.answer-option.is-correct strong {
  color: var(--blue);
}
.answer-option.is-correct .bar-track > span {
  background: var(--blue);
}
.answer-option.is-correct .answer-circle {
  background: var(--blue);
  border-color: var(--blue);
}
.answer-option.is-correct .answer-circle:after {
  content: "✓";
  display: block;
  color: white;
  font-size: 11px;
  text-align: center;
  line-height: 13px;
}
.sample-feedback {
  min-height: 88px;
  padding-top: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.sample-feedback strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}
.sample-feedback.is-answered {
  color: var(--body);
}
.demo-footer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.demo-footer a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--muted);
}
.demo-footer a:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.demo-footer .icon {
  width: 13px;
  height: 13px;
}
.noscript-answer {
  font-size: 14px;
  color: var(--body);
  margin-block: 15px;
}
/* Accessible app tour. The previews use example content, not invented outcomes. */
.product-section > .section-heading {
  text-align: center;
}
.product-section > .section-heading .eyebrow {
  justify-content: center;
}
.product-section .section-lead {
  margin-top: 22px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  margin-top: 62px;
  align-items: center;
}
.feature-options {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.feature-option {
  display: flex;
  gap: 19px;
  align-items: flex-start;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}
.feature-number {
  font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}
.feature-option > span:nth-child(2) {
  flex: 1;
}
.feature-option strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.feature-option > span > span {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  margin-top: 10px;
}
.feature-option .icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--muted);
}
.feature-option[aria-selected="true"] {
  border-bottom-color: var(--blue);
}
.feature-option[aria-selected="true"] strong,
.feature-option[aria-selected="true"] .feature-number,
.feature-option[aria-selected="true"] .icon {
  color: var(--blue);
}
.feature-option:hover strong {
  color: var(--blue);
}
.product-stage {
  background: var(--tint);
  border-radius: 14px;
  padding: 23px 30px 19px;
  background-image:
    linear-gradient(#254cf008 1px, transparent 1px),
    linear-gradient(90deg, #254cf008 1px, transparent 1px);
  background-size: 32px 32px;
}
.stage-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}
.phone {
  width: 316px;
  max-width: 100%;
  margin-inline: auto;
  background: var(--canvas);
  border: 5px solid #2c333a;
  border-radius: 38px;
  box-shadow: 0 15px 30px #2431401a;
  overflow: hidden;
  position: relative;
}
.phone-status {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  padding: 4px 19px 0;
  font-size: 10px;
  font-weight: 600;
}
.phone-island {
  background: #20262b;
  width: 80px;
  height: 21px;
  border-radius: 14px;
  position: absolute;
  top: 7px;
  left: calc(50% - 40px);
}
.phone-inner {
  padding: 12px 21px 0;
}
.phone-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
}
.phone-brand strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.9px;
}
.phone-settings {
  margin-left: auto;
  font-size: 20px;
}
.preview-panel {
  min-height: 417px;
  animation: panel-in 0.25s ease;
}
.preview-panel h3 {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-top: 8px;
}
.phone-sub {
  font-size: 11px;
  color: var(--body);
  margin-top: 12px;
}
.week {
  display: flex;
  justify-content: space-between;
  margin-block: 19px;
  font-size: 9px;
  color: var(--muted);
}
.week > span {
  text-align: center;
}
.week i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  width: 25px;
  height: 25px;
  margin-top: 5px;
  font-size: 10px;
  border-radius: 50%;
}
.week .completed {
  background: var(--tint);
  color: var(--blue);
}
.week .today {
  background: var(--blue);
  color: white;
}
.phone-lesson {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  position: relative;
}
.phone-lesson h4 {
  font-size: 22px;
  letter-spacing: -0.7px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 7px;
}
.phone-lesson > img {
  height: 128px;
  width: 100%;
  object-fit: contain;
  margin-block: 4px;
}
.phone-lesson > p:not(.small-label) {
  font-size: 9px;
  color: var(--muted);
  margin-top: 5px;
}
.phone-lesson > a,
.phone-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 7px;
  margin-top: 12px;
}
.phone-lesson > a .icon,
.phone-button .icon {
  width: 15px;
  height: 15px;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: var(--body);
  border-top: 1px solid var(--line);
  padding-block: 16px 3px;
  margin-top: 16px;
}
.phone-row .icon {
  width: 14px;
  height: 14px;
  color: var(--blue);
}
.phone-row > span:last-child {
  margin-left: auto;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  font-size: 10px;
  color: var(--muted);
  margin: 15px 17px 0;
  border-top: 1px solid var(--line);
  padding: 13px 0 3px;
}
.phone-nav span:first-child {
  color: var(--blue);
}
.phone-home {
  height: 4px;
  width: 92px;
  border-radius: 5px;
  background: var(--text);
  margin: 10px auto 7px;
}
.preview-caption {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  max-width: 280px;
  margin: 18px auto 0;
  line-height: 1.5;
}
.phone-learning > img {
  height: 160px;
  object-fit: contain;
  margin: 8px auto;
}
.phone-learning h4 {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 9px;
}
.phone-learning > p:not(.small-label) {
  font-size: 12px;
  color: var(--body);
  margin-top: 10px;
}
.phone-learning details {
  margin-block: 20px 10px;
  font-size: 12px;
}
.phone-learning summary {
  color: var(--blue);
  list-style: none;
  border-block: 1px solid var(--line);
  padding-block: 13px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.phone-learning details > p {
  font-size: 12px;
  color: var(--body);
  padding-top: 12px;
}
.mock-option {
  margin-top: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 17px;
}
.mock-option > .icon {
  color: var(--blue);
  width: 21px;
  height: 21px;
}
.mock-option h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 9px;
}
.mock-option p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--body);
  margin-top: 5px;
}
.mock-facts {
  display: flex;
  justify-content: space-between;
  border-block: 1px solid var(--line);
  padding: 12px 0;
  margin-top: 17px;
  font-size: 12px;
  font-weight: 500;
}
.phone-fine {
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 13px;
}
.progress-example {
  margin-top: 24px;
}
.progress-example > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}
.progress-example strong {
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
}
.review-note {
  background: var(--tint);
  border-radius: 8px;
  padding: 18px;
  margin-top: 22px;
}
.review-note > .icon {
  color: var(--blue);
}
.review-note h4 {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
  margin-top: 11px;
}
.review-note p {
  font-size: 12px;
  color: var(--body);
  margin-top: 8px;
}
.product-section:not(.tour-ready) .preview-panel[hidden] {
  display: block !important;
  margin-top: 30px;
}
/* Two exam tracks. */
.course-section {
  background: #f0f0ea;
}
.course-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
}
.course-heading > .section-lead {
  max-width: 420px;
  margin-bottom: 4px;
}
.course-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.course-card {
  background: var(--canvas);
  border-radius: 12px;
  overflow: hidden;
}
.course-art {
  height: 267px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 25px 0;
  border-bottom: 1px solid var(--line);
}
.course-art > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 15px;
}
.paper-art > img {
  padding: 8px 45px;
}
.art-index {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  color: var(--muted);
}
.course-card-content {
  padding: 28px 32px 32px;
}
.course-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  font-weight: 600;
  line-height: 1.15;
  margin-block: 8px 15px;
}
.course-card p {
  font-size: 15px;
  color: var(--body);
}
.topic-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.topic-tags li {
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--body);
}
.source-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
  margin: 32px auto 0;
  max-width: 760px;
  font-size: 13px;
  color: var(--body);
}
.source-note .icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.source-note strong {
  color: var(--text);
  font-weight: 600;
}
.source-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 112px;
  align-items: center;
}
.field-section figure {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
}
.field-section figure > img {
  height: 535px;
  object-fit: cover;
  object-position: center;
}
.field-section figcaption {
  position: absolute;
  bottom: 14px;
  left: 19px;
  font-size: 10px;
  color: white;
  text-shadow: 0 1px 5px #000;
}
.field-section .section-lead {
  margin-top: 26px;
}
.field-section > div > p:not(.eyebrow):not(.section-lead) {
  color: var(--body);
  margin-top: 17px;
}
.field-section .text-link {
  margin-top: 22px;
}
/* Full prices and real durations stay together. */
.pricing-section {
  background: var(--tint);
}
.pricing-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}
.pricing-heading > div > p:not(.eyebrow):not(.section-lead) {
  font-size: 15px;
  color: var(--body);
  margin-top: 16px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
.price-card {
  background: var(--canvas);
  border: 1px solid #d2d8e7;
  border-radius: 12px;
  padding: 29px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-featured {
  border-color: var(--blue);
}
.price-featured > .small-label {
  color: var(--blue);
}
.price-card h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-top: 13px;
}
.price {
  font-size: 61px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-top: 27px;
}
.price > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  margin-top: 7px;
}
.price-description {
  font-size: 14px;
  color: var(--body);
  margin-block: 23px 26px;
}
.price-card .button {
  width: 100%;
  gap: 12px;
  font-size: 13px;
  padding: 14px 15px;
  min-height: 49px;
  margin-top: auto;
}
.included {
  padding: 12px 0 12px 19px;
}
.included h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 23px;
}
.included ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.included li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
}
.included li .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.included > p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.8;
  margin-top: 28px;
}
.included > p a {
  color: var(--blue);
  font-weight: 600;
}
.included > p a:hover {
  text-decoration: underline;
}
.pricing-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 780px;
}
/* Questions and the final invitation. */
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.faq-section > div > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
  margin-top: 27px;
}
.faqs {
  border-top: 1px solid var(--line);
}
.faqs details {
  border-bottom: 1px solid var(--line);
}
.faqs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}
.faqs summary::-webkit-details-marker,
.phone-learning summary::-webkit-details-marker {
  display: none;
}
.faqs summary > span {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s;
}
.faqs details[open] summary {
  color: var(--blue);
}
.faqs details[open] summary > span {
  transform: rotate(45deg);
}
.faqs details > div {
  padding: 0 30px 24px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}
.faqs details a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-section {
  background: var(--blue);
  color: white;
  padding-block: 70px;
}
.final-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.final-section .eyebrow {
  color: #e0e7ff;
}
.final-section h2 {
  font-size: 70px;
  letter-spacing: -3px;
  line-height: 1.02;
}
.final-section p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.5;
  color: #e0e7ff;
  margin-block: 23px 28px;
}
.button-white {
  background: var(--canvas);
  color: var(--blue);
  border-color: var(--canvas);
}
.button-white:hover {
  background: white;
  box-shadow: 0 5px 15px #10225930;
}
.final-note {
  display: block;
  font-size: 11px;
  color: #e0e7ff;
  margin-top: 13px;
}
.final-layout > img {
  width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  max-height: 390px;
  object-fit: contain;
}
.site-footer {
  padding-block: 47px 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.5fr;
  gap: 35px;
  align-items: start;
}
.footer-top > p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
}
.footer-top > nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--body);
}
.footer-top > nav a {
  padding-block: 7px;
}
.footer-top > nav a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 43px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: var(--muted);
}
@keyframes panel-in {
  from {
    opacity: 0.4;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .wrap {
    width: min(1240px, calc(100% - 128px));
  }
  .hero {
    gap: 90px;
    padding-block: 75px;
  }
  .hero h1 {
    font-size: 92px;
  }
  .hero-photo {
    height: 600px;
  }
  .hero-description {
    font-size: 19px;
  }
  .lesson-peek {
    bottom: 25px;
  }
  .hero-photo figcaption {
    bottom: 125px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 18px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-actions {
    gap: 19px;
  }
  .hero {
    gap: 43px;
  }
  .hero h1 {
    font-size: 72px;
    letter-spacing: -3.5px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-photo {
    height: 520px;
  }
  .sample-layout {
    gap: 60px;
  }
  .product-layout {
    gap: 55px;
  }
  .field-section {
    gap: 64px;
  }
  .faq-section {
    gap: 60px;
  }
  .price-card {
    padding: 24px 19px;
  }
  .price-card .button {
    font-size: 12px;
    gap: 6px;
  }
  .included {
    padding-left: 9px;
  }
  .included li {
    font-size: 12px;
  }
  .course-strip {
    gap: 18px;
  }
  .course-strip p {
    font-size: 12px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > nav {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
  .footer-bottom {
    margin-top: 25px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero {
    gap: 36px;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -3px;
  }
  .hero-photo {
    height: 515px;
  }
  .hero-photo figcaption {
    left: 20px;
    font-size: 19px;
  }
  .hero-description {
    font-size: 16px;
  }
  .lesson-peek {
    left: -15px;
    right: 16px;
    padding: 16px;
  }
  .peek-top {
    font-size: 10px;
  }
  .peek-content img {
    width: 95px;
  }
  .peek-content h2 {
    font-size: 27px;
  }
  .peek-bottom {
    font-size: 10px;
  }
  .course-strip {
    grid-template-columns: 1fr 1fr;
  }
  .course-strip p:nth-child(2) {
    justify-self: end;
  }
  .course-strip p:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
  .section-space {
    padding-block: 85px;
  }
  .intro {
    gap: 0 50px;
  }
  .intro-body {
    padding-top: 30px;
  }
  .learning-steps {
    gap: 30px;
  }
  .sample-layout {
    gap: 38px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .sample-section {
    padding-block: 75px;
  }
  .sample-copy h2 {
    font-size: 45px;
  }
  .sample-copy .section-lead {
    font-size: 18px;
  }
  .demo-content {
    padding: 22px;
  }
  .demo-header {
    padding: 20px 22px;
  }
  .answer-option {
    padding: 12px;
  }
  .product-layout {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }
  .product-stage {
    padding: 20px 16px;
  }
  .feature-option {
    gap: 12px;
  }
  .feature-option strong {
    font-size: 18px;
  }
  .feature-option > span > span {
    font-size: 13px;
  }
  .feature-option > .icon {
    display: none;
  }
  .course-heading {
    gap: 50px;
  }
  .course-heading > .section-lead {
    font-size: 17px;
    max-width: 300px;
  }
  .course-art {
    height: 225px;
  }
  .course-card-content {
    padding: 24px;
  }
  .field-section {
    gap: 45px;
  }
  .field-section figure > img {
    height: 490px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .included {
    grid-column: 1/-1;
    padding: 25px 0 0;
  }
  .included ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  .included li {
    font-size: 14px;
  }
  .included > p {
    margin-top: 22px;
  }
  .pricing-heading {
    gap: 60px;
  }
  .final-section h2 {
    font-size: 60px;
  }
  .faq-section {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 68px;
  }
  .nav {
    min-height: 73px;
    gap: 14px;
  }
  .nav .brand {
    gap: 5px;
  }
  .nav .brand > img {
    width: 29px;
    height: 29px;
  }
  .nav .brand > span {
    font-size: 26px;
  }
  .nav-actions {
    gap: 0;
  }
  .nav .sign-in {
    display: none;
  }
  .button-small {
    font-size: 12px;
    padding: 11px 13px;
    gap: 10px;
  }
  .button-small > .icon {
    width: 16px;
    height: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 39px;
    padding-block: 44px 36px;
  }
  .hero h1 {
    font-size: clamp(53px, 11.8vw, 78px);
    letter-spacing: -2.9px;
    line-height: 1.02;
  }
  .hero h1 > br:first-of-type {
    display: none;
  }
  .desktop-break {
    display: none;
  }
  .hero h1 > span {
    display: block;
    margin-top: 1px;
  }
  .hero .eyebrow {
    font-size: 12px;
    margin-bottom: 21px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 520px;
    margin-block: 23px 24px;
  }
  .hero-copy > .button {
    width: 100%;
    max-width: 360px;
  }
  .action-note {
    font-size: 11px;
  }
  .hero-visual {
    padding-bottom: 44px;
    margin-left: 12px;
  }
  .hero-photo {
    height: 385px;
    border-radius: 10px;
  }
  .hero-photo > img {
    object-position: center 46%;
  }
  .hero-photo figcaption {
    bottom: 123px;
    left: 22px;
    right: 22px;
    font-size: 22px;
  }
  .lesson-peek {
    left: -12px;
    right: 21px;
    bottom: 25px;
    padding: 17px 21px;
  }
  .peek-content img {
    width: 118px;
    height: 110px;
  }
  .peek-top {
    font-size: 11px;
  }
  .peek-content h2 {
    font-size: 29px;
  }
  .photo-credit {
    font-size: 9px;
  }
  .course-strip {
    padding-block: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .course-strip p {
    font-size: 13px;
  }
  .course-strip p:last-child,
  .course-strip p:nth-child(2) {
    justify-self: auto;
  }
  .course-strip .icon {
    width: 18px;
    height: 18px;
  }
  .eyebrow {
    margin-bottom: 19px;
    font-size: 12px;
  }
  h2,
  .section-heading h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
    line-height: 1.06;
  }
  .section-lead {
    font-size: 18px;
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .intro-body {
    padding-top: 26px;
  }
  .intro-body > p:not(.section-lead) {
    font-size: 15px;
  }
  .intro-body .text-link {
    margin-top: 15px;
  }
  .learning-steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 34px;
  }
  .learning-steps li {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 0 15px;
    padding-top: 21px;
  }
  .step-number {
    padding-top: 2px;
  }
  .learning-steps h3 {
    margin: 0;
    font-size: 21px;
  }
  .learning-steps p {
    grid-column: 2;
    margin-top: 9px;
    max-width: none;
    font-size: 14px;
  }
  .sample-section {
    padding-block: 62px;
  }
  .sample-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sample-copy h2 {
    font-size: 46px;
    max-width: 400px;
  }
  .sample-copy h2 br:nth-of-type(2) {
    display: none;
  }
  .sample-copy .section-lead {
    margin-top: 21px;
  }
  .sample-copy > p:not(.eyebrow):not(.section-lead) {
    font-size: 15px;
    margin-top: 13px;
  }
  .sample-caption {
    margin-top: 23px;
  }
  .demo-content {
    padding: 22px;
  }
  .demo-content > h3 {
    font-size: 30px;
  }
  .demo-header {
    padding: 17px 22px;
  }
  .answer-option {
    padding: 14px;
  }
  .sample-feedback {
    min-height: 95px;
  }
  .demo-footer {
    gap: 10px;
  }
  .demo-footer a {
    font-size: 9px;
  }
  .demo-footer a:last-child {
    font-size: 11px;
  }
  .product-section > .section-heading {
    text-align: left;
  }
  .product-section > .section-heading .eyebrow {
    justify-content: flex-start;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .feature-option {
    gap: 14px;
    padding: 21px 0;
  }
  .feature-option strong {
    font-size: 19px;
  }
  .feature-option > span > span {
    font-size: 14px;
    margin-top: 8px;
  }
  .feature-option > .icon {
    display: block;
  }
  .product-stage {
    padding: 21px 20px 20px;
  }
  .phone {
    width: 316px;
  }
  .stage-label {
    margin-bottom: 22px;
  }
  .preview-caption {
    font-size: 11px;
  }
  .course-heading {
    display: block;
  }
  .course-heading > .section-lead {
    margin-top: 24px;
    max-width: none;
    font-size: 18px;
  }
  .course-cards {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-top: 32px;
  }
  .course-art {
    height: 245px;
  }
  .course-card-content {
    padding: 24px;
  }
  .course-card h3 {
    font-size: 28px;
  }
  .course-card p {
    font-size: 14px;
  }
  .topic-tags {
    margin-top: 20px;
  }
  .source-note {
    font-size: 12px;
    margin-top: 24px;
    gap: 10px;
  }
  .field-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }
  .field-section figure > img {
    width: 100%;
    height: 370px;
    object-position: center 54%;
  }
  .field-section h2 {
    font-size: 45px;
  }
  .field-section h2 br:last-of-type {
    display: none;
  }
  .field-section .section-lead {
    margin-top: 22px;
  }
  .field-section > div > p:not(.eyebrow):not(.section-lead) {
    font-size: 15px;
  }
  .field-section .text-link {
    margin-top: 15px;
  }
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-grid {
    gap: 16px;
    margin-top: 30px;
  }
  .price-card {
    padding: 23px 19px;
  }
  .price-card h3 {
    font-size: 23px;
  }
  .price {
    font-size: 54px;
    margin-top: 22px;
  }
  .price-description {
    font-size: 13px;
    margin-top: 20px;
  }
  .price-card .button {
    font-size: 12px;
    padding: 13px 12px;
  }
  .included ul {
    gap: 14px 20px;
  }
  .included li {
    font-size: 12px;
  }
  .pricing-note {
    font-size: 11px;
    line-height: 1.6;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section > div > p:not(.eyebrow) {
    margin-top: 21px;
  }
  .faqs summary {
    padding: 22px 0;
    font-size: 16px;
  }
  .faqs details > div {
    font-size: 14px;
    padding-right: 12px;
  }
  .final-section {
    padding-block: 57px;
  }
  .final-layout {
    display: block;
    position: relative;
  }
  .final-section h2 {
    font-size: 58px;
    letter-spacing: -2.5px;
  }
  .final-section p:not(.eyebrow) {
    font-size: 17px;
    margin-block: 22px 27px;
  }
  .final-layout > img {
    display: none;
  }
  .final-section .button {
    width: 100%;
    max-width: 360px;
  }
  .site-footer {
    padding-block: 34px 25px;
  }
  .footer-top {
    gap: 21px;
    grid-template-columns: 1fr;
  }
  .footer-top > .brand {
    margin-bottom: 0;
  }
  .footer-top > nav {
    gap: 10px 22px;
    font-size: 12px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    font-size: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    flex-basis: 100%;
  }
}
@media (max-width: 430px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 27px 25px;
  }
  .price-card h3 {
    font-size: 24px;
  }
  .price {
    font-size: 59px;
  }
  .price-card .button {
    font-size: 14px;
  }
  .price-description {
    font-size: 14px;
    max-width: 260px;
  }
  .included ul {
    grid-template-columns: 1fr;
  }
  .included li {
    font-size: 14px;
  }
  .included {
    padding-top: 18px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-photo {
    height: 375px;
  }
  .peek-content img {
    width: 100px;
  }
  .lesson-peek {
    right: 12px;
    padding: 16px 17px;
  }
  .answer-label {
    font-size: 10px;
    gap: 5px;
  }
  .answer-option {
    padding: 13px 11px;
  }
  .answer-option strong {
    font-size: 29px;
  }
  .demo-content {
    padding: 20px;
  }
  .demo-header {
    padding: 17px 20px;
  }
  .contract-choices label > span {
    font-size: 12px;
  }
  .product-stage {
    padding-inline: 15px;
  }
  .phone-inner {
    padding-inline: 18px;
  }
  .phone-status {
    padding-inline: 18px;
  }
  .field-section figure > img {
    height: 340px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav .brand > span {
    font-size: 23px;
  }
  .nav .brand > img {
    width: 25px;
    height: 25px;
  }
  .button-small {
    padding: 10px;
    font-size: 11px;
    gap: 7px;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 16px;
  }
  .peek-top {
    font-size: 10px;
  }
  .peek-top .icon {
    width: 14px;
    height: 14px;
  }
  .peek-content h2 {
    font-size: 27px;
  }
  .peek-content img {
    width: 85px;
  }
  .demo-content {
    padding: 18px 15px;
  }
  .demo-header {
    padding: 17px 15px;
  }
  .demo-content > h3 {
    font-size: 27px;
  }
  .demo-content > p:not(.small-label) {
    font-size: 14px;
  }
  .answer-option {
    padding: 12px 10px;
  }
  .answer-label {
    font-size: 9px;
  }
  .answer-circle {
    width: 13px;
    height: 13px;
  }
  .demo-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .demo-footer a {
    font-size: 11px;
  }
  .demo-footer a:last-child {
    font-size: 13px;
  }
  .phone {
    border-width: 4px;
  }
  .phone-inner {
    padding-inline: 14px;
  }
  .phone h3 {
    font-size: 25px;
  }
  .product-stage {
    padding-inline: 12px;
  }
  .week i {
    width: 23px;
    height: 23px;
  }
  .feature-option > .icon {
    display: none;
  }
  .stage-label {
    font-size: 10px;
  }
  .footer-top > nav {
    gap: 9px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .lesson-peek:hover {
    transform: none;
  }
}
/* Keep the photo caption above the lesson inset at every breakpoint. */
.hero-photo figcaption {
  bottom: 225px;
}
.lesson-peek {
  z-index: 2;
}
.final-layout > img {
  filter: none;
  opacity: 1;
}
.sample-next {
  width: 100%;
  margin: 12px 0 20px;
  font-size: 14px;
  min-height: 48px;
  padding: 13px 17px;
}
@media (min-width: 901px) and (max-height: 800px) {
  .hero {
    padding-block: 40px 42px;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -3.7px;
  }
  .hero-photo {
    height: 490px;
  }
  .hero-description {
    margin-block: 20px 22px;
  }
  .hero .eyebrow {
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  .hero-photo figcaption {
    bottom: 210px;
  }
  .feature-option[aria-selected="false"] > span > span {
    display: none;
  }
}
/* Grid children must be allowed to shrink on narrow browsers. */
.hero > *,
.intro > *,
.sample-layout > *,
.product-layout > *,
.course-cards > *,
.pricing-grid > *,
.faq-section > * {
  min-width: 0;
}
.feature-option > span:nth-child(2) {
  min-width: 0;
}
