:root {
  --felt: #0f6b4b;
  --felt-2: #247f62;
  --felt-dark: #0a3327;
  --felt-ink: #08251d;
  --felt-soft: #e7f3ee;
  --cream: #fcfbf7;
  --cream-2: #f6f1e7;
  --surface: #fffdf8;
  --surface-2: #f3faf6;
  --ink: #17201c;
  --muted: #53625b;
  --muted-2: #6d7872;
  --border: #e2dccf;
  --border-strong: #d4c9b8;
  --gold: #d9a441;
  --gold-soft: #f7e5b8;
  --danger: #b94242;
  --blue: #34699a;
  --shadow-soft: 0 16px 42px rgba(23, 32, 28, 0.12);
  --shadow-card: 0 10px 24px rgba(23, 32, 28, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  color-scheme: light;
  --serif: Georgia, "Times New Roman", serif;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(217, 164, 65, 0.1), transparent 360px),
    var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: var(--felt);
  text-decoration-color: rgba(15, 107, 75, 0.38);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--felt-dark);
  text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  color: var(--felt-ink);
  font-family: var(--serif);
  font-size: 4.75rem;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--felt-ink);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--felt-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--felt-dark);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px 39px;
  border-bottom: 1px solid rgba(244, 231, 201, 0.18);
  background:
    linear-gradient(90deg, rgba(10, 51, 39, 0.98), rgba(15, 107, 75, 0.95)),
    var(--felt-dark);
  backdrop-filter: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: #fff8e8;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-links a,
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #fff8e8;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-links {
  color: rgba(255, 248, 232, 0.92);
}

.footer-links a:hover {
  color: #ffffff;
}

.content-shell,
.hero-inner {
  width: min(1180px, calc(100% - 78px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 50px 0;
}

.section.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), #eef7f2);
}

.section-surface {
  position: relative;
}

.hero {
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(360px, 400px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  min-height: 800px;
}

.hero-copy {
  padding: 54px 0 38px;
}

.lead,
.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.hero-copy .lead {
  max-width: 372px;
}

.hero-copy > p:not(.lead) {
  max-width: 520px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.hero-actions .primary {
  width: 225px;
}

.hero-actions .secondary {
  width: 162px;
}

.button.primary {
  background: var(--gold);
  color: var(--felt-ink);
}

.button.primary.disabled {
  background: #eee8dc;
  border-color: #d8d0c2;
  color: #8a8071;
}

.button.primary.disabled {
  cursor: default;
}

.button.secondary {
  border-color: rgba(15, 107, 75, 0.34);
  background: rgba(255, 253, 248, 0.72);
  color: var(--felt-dark);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button.tertiary {
  border-color: var(--felt);
  background: var(--felt);
  color: #ffffff;
}

.hero-proof {
  position: relative;
  justify-self: end;
  width: min(100%, 535px);
  min-height: 800px;
}

.device-frame {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(10, 51, 39, 0.88);
  border-radius: 28px;
  background: #fffefa;
  box-shadow: 0 22px 46px rgba(23, 32, 28, 0.22);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-frame.phone {
  aspect-ratio: 9 / 16;
  border-radius: 26px;
}

.device-frame.tablet {
  aspect-ratio: 16 / 10;
}

.hero-tablet {
  position: absolute;
  right: 0;
  top: 32px;
  width: min(430px, 82%);
}

.hero-phone {
  position: absolute;
  left: 0;
  top: 170px;
  z-index: 2;
  width: min(190px, 36%);
}

.offset-phone {
  position: absolute;
  right: 62px;
  bottom: 0;
  z-index: 3;
  width: min(174px, 32%);
}

.safety-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  max-width: 400px;
  margin-top: 34px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
  box-shadow: none;
}

.safety-strip h2 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.safety-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.safety-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--felt), var(--felt-dark));
  color: #ffffff;
  font-weight: 900;
}

.safety-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-header {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

.muted {
  color: var(--muted);
}

.grid,
.feature-grid,
.screenshot-grid,
.data-cards {
  display: grid;
  gap: 18px;
}

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

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

.feature-rail-section {
  background: linear-gradient(180deg, #fffdf8, #fbf8ef);
  padding: 20px 0;
}

.rail-heading {
  margin: 0 auto 20px;
  max-width: 760px;
  text-align: center;
}

.rail-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-size: 1.55rem;
}

.rail-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 11px auto 0;
  background: var(--gold);
}

.concept-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.concept-features .feature-card {
  border-width: 0 1px 0 0;
  border-color: var(--border);
  border-radius: 0;
  background: transparent;
  padding: 0 26px 0 0;
  margin-right: 26px;
}

.concept-features .feature-card:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.feature-card,
.support-card,
.data-cards article,
.inline-callout,
.shot-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card,
.support-card,
.data-cards article,
.inline-callout {
  padding: 22px;
}

.feature-card p,
.support-card p,
.data-cards p,
.inline-callout p {
  margin-bottom: 0;
  color: var(--muted);
}

.concept-features .feature-card h3 {
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.concept-features .feature-card p {
  font-size: 0.78rem;
  line-height: 1.3;
}

.feature-icon,
.panel-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--felt);
}

.feature-icon::before,
.feature-icon::after,
.panel-icon::before,
.panel-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-book::before {
  inset: 5px 4px;
  border: 3px solid currentColor;
  border-radius: 3px 10px 10px 3px;
}

.icon-book::after {
  top: 8px;
  left: 18px;
  width: 3px;
  height: 22px;
  background: currentColor;
}

.icon-target::before {
  inset: 3px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-target::after {
  inset: 13px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.icon-cards::before {
  width: 21px;
  height: 27px;
  top: 7px;
  left: 7px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: rotate(-12deg);
}

.icon-cards::after {
  width: 21px;
  height: 27px;
  top: 5px;
  left: 14px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: rotate(12deg);
}

.icon-bars::before {
  left: 7px;
  bottom: 4px;
  width: 6px;
  height: 15px;
  background: currentColor;
  box-shadow: 11px -8px 0 currentColor, 22px -17px 0 currentColor;
}

.icon-bars::after {
  left: 5px;
  right: 1px;
  bottom: 3px;
  height: 3px;
  background: currentColor;
}

.lesson-media {
  position: relative;
  min-height: 540px;
}

.lesson-media .tablet {
  width: 100%;
}

.mini-overlap {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: min(260px, 42%);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--felt);
  box-shadow: 0 0 0 4px var(--felt-soft);
}

.screenshot-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.shot-card {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.shot-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
}

.shot-card figcaption {
  min-height: 60px;
  padding: 13px 14px;
  border-top: 1px solid var(--border);
  color: var(--felt-dark);
  font-size: 0.92rem;
  font-weight: 780;
}

.privacy-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fbf8ef;
  padding: 32px 0 24px;
}

.concept-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.concept-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.concept-panel img {
  align-self: end;
  width: 100%;
  max-height: 188px;
  border: 2px solid rgba(10, 51, 39, 0.82);
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
}

.concept-panel h2 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.concept-panel .text-link {
  display: none;
}

.panel-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--felt), var(--felt-dark));
  color: #ffffff;
}

.lock-icon::before {
  left: 18px;
  top: 24px;
  width: 22px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.lock-icon::after {
  left: 22px;
  top: 13px;
  width: 14px;
  height: 16px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.no-icon::before {
  left: 15px;
  top: 15px;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.no-icon::after {
  left: 18px;
  top: 27px;
  width: 23px;
  height: 3px;
  background: currentColor;
  transform: rotate(-45deg);
}

.plain-checks {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.25;
}

.plain-checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--felt);
  border-bottom: 2px solid var(--felt);
  transform: rotate(-45deg);
}

.text-link {
  font-weight: 800;
}

.data-cards {
  grid-template-columns: 1fr;
}

.responsible-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius);
  background: var(--felt-dark);
  color: #ffffff;
  padding: 28px;
}

.responsible-callout h2,
.responsible-callout p {
  color: #ffffff;
}

.responsible-callout p {
  margin-bottom: 0;
  max-width: 800px;
}

.legal-page {
  padding: 58px 0 78px;
}

.page-hero {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.page-kicker {
  margin-bottom: 12px;
  color: var(--felt);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.legal-copy {
  width: min(780px, 100%);
}

.legal-copy h1,
.page-hero h1 {
  font-size: 3.1rem;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 1.42rem;
}

.legal-copy ul,
.support-card ul,
.support-card ol {
  padding-left: 22px;
}

.legal-copy li,
.support-card li {
  margin-bottom: 8px;
}

.support-grid {
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--felt);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 20px;
}

.side-panel h2 {
  font-size: 1.25rem;
}

.side-panel p {
  color: var(--muted);
}

.closing-strip {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 30px;
  align-items: center;
  min-height: 92px;
  padding: 12px 0;
}

.closing-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.closing-copy h2 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.closing-copy p {
  margin: 0;
  max-width: 530px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.closing-icon {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--felt);
}

.closing-icon::before,
.closing-icon::after,
.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-cap::before {
  left: 14px;
  top: 21px;
  width: 32px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 28%, 50% 0, 100% 28%, 50% 58%);
}

.icon-cap::after {
  left: 22px;
  top: 32px;
  width: 18px;
  height: 8px;
  border-bottom: 4px solid currentColor;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 0 0 9px 9px;
}

.closing-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.closing-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  border-left: 1px solid var(--border);
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.22;
}

.mini-icon {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  color: var(--felt-ink);
}

.icon-plane::before {
  left: 2px;
  top: 6px;
  width: 24px;
  height: 15px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-35deg);
}

.icon-device::before {
  inset: 2px 6px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-device::after {
  left: 12px;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.icon-eye::before {
  left: 2px;
  top: 7px;
  width: 24px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-eye::after {
  left: 10px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.icon-learner::before {
  left: 9px;
  top: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-learner::after {
  left: 5px;
  top: 16px;
  width: 18px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(10, 51, 39, 1), rgba(15, 107, 75, 0.95)),
    var(--felt-dark);
}

.footer-inner {
  width: min(1180px, calc(100% - 78px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 55px;
  padding: 13px 0;
  color: rgba(255, 248, 232, 0.8);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .screenshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .split-section.reverse,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .lesson-media {
    min-height: 500px;
  }

  .side-panel {
    position: static;
  }

}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-proof {
    justify-self: center;
    width: min(100%, 620px);
    min-height: 620px;
  }

  .hero-tablet {
    right: 4%;
    width: min(720px, 82%);
  }

  .hero-phone {
    left: 8%;
    right: auto;
    width: min(260px, 36%);
  }

  .offset-phone {
    right: 18%;
    left: auto;
    width: min(220px, 32%);
  }

  .concept-panels,
  .closing-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
  }

  .nav-links {
    width: 100%;
    gap: 12px;
  }

  .content-shell,
  .hero-inner,
  .footer-inner {
    width: min(100% - 34px, 1180px);
  }

  .hero {
    padding-top: 0;
  }

  h1,
  .legal-copy h1,
  .page-hero h1 {
    font-size: 2.55rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.8rem;
  }

  .lead,
  .section-lead {
    font-size: 1.05rem;
  }

  .feature-grid,
  .grid.two,
  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .concept-features {
    gap: 20px;
  }

  .concept-features .feature-card {
    border-width: 0 0 1px 0;
    padding: 0 0 20px 0;
    margin-right: 0;
  }

  .concept-features .feature-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  .responsible-callout,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    min-height: 36px;
  }

  .hero-proof {
    display: none;
  }

  .safety-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .shot-card img {
    max-height: 680px;
  }

  .lesson-media {
    min-height: 430px;
  }

  .mini-overlap {
    right: 0;
    width: min(210px, 56%);
  }

  .concept-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .concept-panel img {
    max-height: 240px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .legal-page {
    padding: 40px 0 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
