@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper: #f7f6f2;
  --ink: #242721;
  --muted: #65675e;
  --orange: #f65b35;
  --rule: #dcded4;
  --white: #fff;
  --blue: #263caf;
  --heading: Manrope, Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
button,
select,
a,
summary {
  outline-offset: 5px;
}
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 700;
}
h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1.6px;
}
h3 {
  letter-spacing: -0.6px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.site-header {
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--heading);
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand-bottom {
  display: block;
}
.brand-dot {
  color: var(--orange);
}
.brand-mark {
  width: 43px;
  height: 44px;
  background: var(--orange);
  border-radius: 11px 11px 11px 2px;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  position: relative;
  letter-spacing: -3px;
  padding-right: 5px;
}
.brand-mark > span {
  position: absolute;
  top: -2px;
  right: 4px;
  font: 700 20px var(--body);
  letter-spacing: 0;
}
.site-header nav {
  display: flex;
  gap: 35px;
  margin-left: auto;
  margin-right: 45px;
  font-size: 14px;
}
.site-header nav a {
  padding-block: 10px;
}
.site-header nav a:hover,
.hero-secondary:hover,
.text-link:hover,
.site-footer > a:not(.brand):hover {
  color: #b53718;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 55px;
  padding: 14px 22px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button > span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.button.small {
  min-height: 43px;
  font-size: 14px;
  background: transparent;
  border-color: var(--ink);
  padding: 10px 16px;
  gap: 20px;
}
.button.small:hover {
  background: var(--ink);
  color: var(--paper);
}
.button.primary {
  background: var(--orange);
  color: #20241e;
}
.button.primary:hover {
  background: #ff704d;
}
.button.dark {
  background: var(--ink);
  color: white;
}
.button.dark:hover {
  background: #3c4237;
}
.hero {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 90px;
  padding-block: 74px 65px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 700;
  line-height: 1.5;
}
.hero .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.tiny-star {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(56px, 5.55vw, 80px);
  letter-spacing: -4.6px;
  line-height: 1.105;
  margin-left: -4px;
  white-space: nowrap;
}
.speaking {
  position: relative;
  z-index: 0;
}
.speaking svg {
  position: absolute;
  width: 102%;
  height: 20px;
  left: -2%;
  bottom: -9px;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  z-index: -1;
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 29px 0 26px;
}
.hero-secondary {
  display: block;
  width: fit-content;
  font-size: 13px;
  margin-top: 19px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #b2b4a9;
}
.hero-secondary span {
  display: inline-block;
  margin-left: 7px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 41px;
}
.mini-check {
  border: 1px solid #9da28f;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--ink);
}
.finder-panel {
  border: 1px solid var(--ink);
  border-radius: 11px;
  box-shadow: 7px 7px 0 #e4e5db;
  transform: rotate(1.5deg);
  overflow: hidden;
  background: #fff;
  scroll-margin-top: 40px;
}
.hello-panel {
  background: var(--orange);
  height: 190px;
  position: relative;
  padding: 19px 25px;
  overflow: hidden;
}
.issue-label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
}
.hello-word {
  display: block;
  font:
    italic 700 112px/0.99 Georgia,
    serif;
  letter-spacing: -8px;
  margin-top: 2px;
}
.hello-word > span {
  color: var(--paper);
}
.hello-caption {
  display: block;
  font-size: 11px;
  margin-top: 9px;
}
.hello-stamp {
  position: absolute;
  right: 22px;
  top: 56px;
  border: 1px solid #3e311e;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  transform: rotate(15deg);
}
.finder-form {
  padding: 23px 27px 18px;
  transform: rotate(-1.5deg);
}
.finder-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.finder-heading h2 {
  font-size: 21px;
  letter-spacing: -0.8px;
}
.finder-heading > span {
  font-size: 29px;
  line-height: 1;
}
.finder-form label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.finder-form select {
  width: 100%;
  min-height: 46px;
  background-color: #fff;
  border: 1px solid #d9dcd2;
  border-radius: 5px;
  color: var(--ink);
  padding: 10px 34px 10px 13px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23242721' stroke-width='1.6'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  font-size: 14px;
  margin-bottom: 14px;
}
.finder-form .button {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
  margin-top: 2px;
}
.form-note {
  font-size: 11px;
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: 20px;
}
.principles p {
  font-size: 13px;
}
.principles p:nth-child(2) {
  text-align: center;
}
.principles p:nth-child(3) {
  text-align: right;
}
.principles span {
  font-size: 11px;
  color: #65675e;
  margin-right: 13px;
  font-variant-numeric: tabular-nums;
}
.section {
  padding-block: 77px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 3px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 27px;
}
.filter {
  border: 1px solid var(--rule);
  border-radius: 5px;
  background: transparent;
  padding: 10px 15px;
  color: var(--muted);
  font-size: 13px;
  min-height: 42px;
  transition: background 0.15s;
}
.filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.filter > span {
  font-size: 11px;
  padding-left: 12px;
  color: #cdd0c4;
}
.results-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.text-button {
  border: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
  font-size: 13px;
  color: var(--ink);
  min-height: 32px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 25px 25px 0;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  scroll-margin-top: 35px;
}
.app-card:hover {
  border-color: #aaafa0;
  box-shadow: 0 5px 20px #25272106;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.app-monogram {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font: 700 30px/1 var(--heading);
  letter-spacing: -2px;
}
.babbel {
  background: #fff0e7;
  color: #e95116;
}
.pimsleur {
  background: #e9ecfb;
  color: #28439e;
  font-family: Georgia, serif;
  font-style: italic;
}
.busuu {
  background: #e7f1ff;
  color: #2266bd;
}
.duolingo {
  background: #eef6dd;
  color: #4c8212;
}
.lingq {
  background: #eff2e5;
  color: #536923;
  font-size: 20px;
  letter-spacing: -1px;
}
.hellochinese {
  background: #ffefeb;
  color: #d84731;
  font-family: Arial, sans-serif;
  font-size: 25px;
  letter-spacing: 0;
}
.category {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--muted);
}
.app-card h3 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.card-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  min-height: 94px;
}
.app-card dl {
  margin: 21px 0 24px;
  font-size: 12px;
  border-top: 1px solid #eceee5;
  padding-top: 16px;
  flex: 1;
}
.app-card dl > div + div {
  margin-top: 12px;
}
.app-card dt {
  font-weight: 700;
}
.app-card dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 17px;
  border-top: 1px solid #eceee5;
}
.card-footer > span {
  font-size: 10px;
  color: var(--muted);
}
.card-footer a {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.card-footer a span {
  font-size: 17px;
  margin-left: 4px;
}
.card-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.source-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
  max-width: 940px;
  line-height: 1.7;
}
.source-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  margin-left: 6px;
}
.empty-state {
  padding: 50px;
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.empty-state p {
  margin-top: 12px;
  color: var(--muted);
}
.comparison-section {
  background: #eaece3;
  border-block: 1px solid #e0e3d6;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.comparison-card {
  border: 1px solid #cdd2c1;
  border-radius: 7px;
  background: #f7f8f1;
}
.comparison-card summary {
  padding: 25px 25px 0;
  cursor: pointer;
  list-style: none;
}
.comparison-card summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}
.versus-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}
.versus-icons .app-monogram {
  width: 48px;
  height: 48px;
}
.vs {
  font:
    italic 16px Georgia,
    serif;
  color: var(--muted);
}
.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.comparison-card summary p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.comparison-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dce0d2;
  margin-top: 24px;
  padding-block: 17px;
  font-size: 13px;
  font-weight: 700;
}
.expand-icon {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.comparison-card[open] .expand-icon {
  transform: rotate(45deg);
}
.comparison-answer {
  border-top: 1px solid var(--rule);
  padding: 20px 25px 25px;
  font-size: 14px;
}
.comparison-answer p + p {
  margin-top: 14px;
}
.comparison-answer a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: block;
  margin-top: 18px;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding-block: 90px;
}
.approach .eyebrow {
  margin-bottom: 23px;
}
.approach h2 {
  font-size: 43px;
  letter-spacing: -2px;
}
.approach h2 > span {
  color: var(--orange);
}
.approach-intro > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  margin: 23px 0;
  max-width: 395px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link span {
  margin-left: 12px;
}
.approach-points {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.approach-points > div {
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}
.approach-points > div:last-child {
  border: 0;
  padding-bottom: 0;
}
.approach-points > div > span {
  font-size: 12px;
  color: #65675e;
  padding-top: 3px;
}
.approach-points h3 {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  margin-bottom: 9px;
}
.approach-points p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-section {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
}
.faq-section .eyebrow {
  margin-bottom: 15px;
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
}
.faq-list details:first-child {
  border-top: 1px solid var(--rule);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  padding-block: 20px;
}
.faq-list summary > span {
  font-size: 23px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 25px 22px 0;
  line-height: 1.8;
}
.closing {
  background: #e9ebf6;
  border-radius: 9px;
  padding: 43px 45px;
  display: flex;
  align-items: center;
  gap: 45px;
  position: relative;
  overflow: hidden;
}
.closing > p {
  font: 700 29px/1.3 var(--heading);
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.closing em {
  font:
    italic 35px Georgia,
    serif;
}
.closing .button {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 135px;
}
.closing-word {
  position: absolute;
  right: -8px;
  bottom: -37px;
  font:
    italic 135px Georgia,
    serif;
  color: #c8cee9;
  transform: rotate(-13deg);
  letter-spacing: -10px;
  user-select: none;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 47px 36px;
  flex-wrap: wrap;
}
.site-footer .brand {
  font-size: 13px;
  gap: 8px;
}
.site-footer .brand-mark {
  height: 33px;
  width: 32px;
  font-size: 27px;
  line-height: 33px;
  border-radius: 8px 8px 8px 2px;
}
.site-footer .brand-mark > span {
  font-size: 15px;
  right: 3px;
  top: -1px;
}
.site-footer > p {
  font-size: 12px;
  color: var(--muted);
}
.site-footer > a:not(.brand) {
  margin-left: auto;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.copyright {
  width: 100%;
  font-size: 10px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 10px 15px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
@media (min-width: 1500px) {
  .hero {
    gap: 110px;
  }
  .hero h1 {
    font-size: 81px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 50px;
    grid-template-columns: 1.3fr 1fr;
  }
  .hero h1 {
    font-size: 6vw;
    letter-spacing: -3.8px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .category {
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .app-card {
    padding: 20px 19px 0;
  }
  .card-footer {
    flex-wrap: wrap;
  }
  .card-footer > span {
    width: 100%;
  }
  .card-description {
    min-height: 116px;
  }
  .site-header nav {
    margin-right: 15px;
    gap: 24px;
  }
  .approach {
    gap: 65px;
  }
  .faq-section {
    gap: 55px;
  }
  .comparison-card summary {
    padding-inline: 20px;
  }
  .comparison-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 89px;
  }
  .brand {
    font-size: 15px;
  }
  .site-header nav {
    gap: 20px;
    margin: 0 0 0 auto;
  }
  .site-header nav a {
    font-size: 13px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding-block: 51px 45px;
    gap: 35px;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: 6.2vw;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 15px;
  }
  .desktop-break {
    display: none;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .hero .button {
    font-size: 13px;
    padding-inline: 15px;
    gap: 15px;
  }
  .hero-secondary {
    font-size: 11px;
  }
  .hero-footnote {
    font-size: 10px;
  }
  .hello-panel {
    padding: 17px 20px;
    height: 167px;
  }
  .hello-word {
    font-size: 96px;
  }
  .hello-stamp {
    height: 57px;
    width: 57px;
    right: 15px;
    top: 53px;
    font-size: 12px;
  }
  .hello-caption {
    font-size: 9px;
  }
  .finder-form {
    padding: 20px 20px 15px;
  }
  .finder-heading h2 {
    font-size: 17px;
  }
  .finder-heading > span {
    font-size: 23px;
  }
  .finder-form label {
    font-size: 11px;
  }
  .finder-form select {
    font-size: 13px;
  }
  .form-note {
    font-size: 9px;
  }
  .principles p {
    font-size: 11px;
  }
  .principles span {
    margin-right: 5px;
    font-size: 10px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .section-heading > p br {
    display: none;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-description {
    min-height: 92px;
  }
  .category {
    font-size: 9px;
  }
  .card-footer > span {
    width: auto;
  }
  .comparison-grid {
    gap: 12px;
  }
  .comparison-card summary {
    padding: 18px 15px 0;
  }
  .comparison-card h3 {
    font-size: 17px;
  }
  .comparison-card summary p {
    font-size: 12px;
  }
  .comparison-card summary p br {
    display: none;
  }
  .comparison-link {
    font-size: 11px;
  }
  .comparison-answer {
    padding: 18px 15px;
    font-size: 13px;
  }
  .versus-icons {
    gap: 10px;
  }
  .versus-icons .app-monogram {
    width: 38px;
    height: 38px;
  }
  .approach {
    gap: 35px;
  }
  .approach h2 {
    font-size: 33px;
  }
  .approach-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .approach .eyebrow {
    font-size: 10px;
  }
  .approach-points > div {
    gap: 12px;
  }
  .approach-points h3 {
    font-size: 15px;
  }
  .approach-points p {
    font-size: 13px;
  }
  .faq-section {
    gap: 30px;
    grid-template-columns: 1fr 1.5fr;
  }
  .faq-section h2 {
    font-size: 29px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .closing {
    padding: 30px;
  }
  .closing > p {
    font-size: 24px;
  }
  .closing .button {
    margin-right: 0;
  }
  .closing-word {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 85px;
    gap: 10px;
  }
  .brand {
    font-size: 13px;
    gap: 8px;
  }
  .brand-mark {
    width: 36px;
    height: 38px;
    font-size: 31px;
    line-height: 38px;
  }
  .brand-mark > span {
    font-size: 17px;
  }
  .site-header nav {
    gap: 17px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .site-header nav a:last-child {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 42px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(39px, 10.3vw, 62px);
    letter-spacing: -2.6px;
    line-height: 1.13;
    white-space: normal;
  }
  .hero-description {
    font-size: 16px;
    max-width: 360px;
    margin-block: 26px;
  }
  .hero .button {
    font-size: 14px;
    padding: 15px 19px;
    gap: 35px;
  }
  .hero-secondary {
    font-size: 12px;
    margin-top: 19px;
  }
  .hero-footnote {
    font-size: 11px;
    margin-top: 24px;
  }
  .finder-panel {
    max-width: 430px;
    width: calc(100% - 6px);
    margin: 2px auto 0;
    transform: rotate(1deg);
  }
  .hello-panel {
    height: 157px;
  }
  .hello-word {
    font-size: 92px;
  }
  .hello-caption {
    font-size: 11px;
  }
  .hello-stamp {
    width: 65px;
    height: 65px;
    right: 23px;
    top: 45px;
    font-size: 13px;
  }
  .finder-form {
    padding: 23px 23px 18px;
    transform: rotate(-1deg);
  }
  .finder-heading h2 {
    font-size: 21px;
  }
  .finder-form label {
    font-size: 12px;
  }
  .finder-form select {
    font-size: 16px;
  }
  .form-note {
    font-size: 11px;
  }
  .finder-form .button {
    min-height: 49px;
    padding-block: 12px;
  }
  .principles {
    padding-block: 18px;
    gap: 10px;
  }
  .principles p,
  .principles p:nth-child(2),
  .principles p:nth-child(3) {
    font-size: 11px;
    text-align: left;
    line-height: 1.5;
  }
  .principles span {
    display: block;
    font-size: 10px;
    margin-bottom: 6px;
  }
  .section {
    padding-block: 44px;
  }
  .section-heading h2 {
    font-size: 29px;
    letter-spacing: -1.3px;
    max-width: 330px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .filters {
    gap: 7px;
  }
  .filter {
    font-size: 12px;
    padding: 9px 11px;
    min-height: 40px;
  }
  .filter > span {
    padding-left: 8px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .app-card {
    padding: 23px 24px 0;
  }
  .card-top {
    margin-bottom: 16px;
  }
  .category {
    font-size: 10px;
  }
  .card-description {
    min-height: 0;
    font-size: 15px;
  }
  .app-card h3 {
    font-size: 28px;
  }
  .app-card dl {
    margin-block: 20px;
    font-size: 12px;
  }
  .app-card dd {
    font-size: 14px;
  }
  .card-footer {
    padding-block: 17px;
    flex-wrap: nowrap;
  }
  .card-footer > span {
    font-size: 11px;
  }
  .card-footer a {
    font-size: 12px;
  }
  .source-note {
    font-size: 11px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .comparison-card summary {
    padding: 23px 24px 0;
  }
  .versus-icons {
    margin-bottom: 18px;
  }
  .versus-icons .app-monogram {
    width: 42px;
    height: 42px;
  }
  .comparison-card h3 {
    font-size: 24px;
  }
  .comparison-card summary p {
    font-size: 14px;
  }
  .comparison-link {
    font-size: 13px;
  }
  .comparison-answer {
    padding: 21px 24px;
    font-size: 14px;
  }
  .approach {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach h2 {
    font-size: 36px;
  }
  .approach-intro > p:not(.eyebrow) {
    font-size: 16px;
  }
  .approach-points h3 {
    font-size: 17px;
  }
  .approach-points p {
    font-size: 14px;
  }
  .approach-points > div {
    gap: 16px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .faq-section h2 {
    font-size: 33px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .closing {
    padding: 30px 25px;
    display: block;
  }
  .closing > p {
    font-size: 27px;
  }
  .closing .button {
    margin-top: 25px;
    min-height: 49px;
  }
  .site-footer {
    gap: 22px;
    padding-top: 35px;
  }
  .site-footer > p {
    width: 100%;
    order: 2;
  }
  .site-footer > a:not(.brand) {
    font-size: 11px;
  }
  .copyright {
    order: 3;
    font-size: 10px;
  }
  .results-line {
    font-size: 13px;
    align-items: start;
  }
  .empty-state {
    padding: 27px;
  }
  .empty-state h3 {
    font-size: 20px;
  }
  .empty-state p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.no-script-note {
  padding: 25px;
  font-size: 15px;
}
.hello-word {
  max-width: calc(100% - 85px);
}
@media (min-width: 601px) and (max-width: 800px) {
  .hello-word {
    font-size: 76px;
    letter-spacing: -6px;
  }
  .hello-panel {
    height: 167px;
  }
  .hello-caption {
    margin-top: 20px;
  }
}

/* Official press artwork keeps its original proportions and colors. */
.brand-art{display:block;object-fit:contain;width:104px;height:54px;max-width:100%}.card-top .brand-art{object-position:left center}.brand-art.lingq-art{width:88px;height:auto}.brand-name{font-family:var(--heading);font-weight:700;font-size:16px;letter-spacing:-.5px;color:var(--ink)}.versus-icons .brand-art{width:82px;height:55px}.versus-icons .brand-name{font-size:14px}.featured-comparison{padding:30px}.featured-comparison .eyebrow{font-size:10px;margin-bottom:22px}.featured-comparison h3{margin:23px 0 12px}.featured-comparison>p:not(.eyebrow){font-size:15px;color:var(--muted)}.featured-comparison .comparison-link{display:flex;justify-content:space-between;margin-top:26px}.featured-comparison h3 a:hover{text-decoration:underline}.card-top:has(.brand-name){min-height:54px}
