@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --paper: #f8f8f2;
  --ink: #183e35;
  --muted: #53655b;
  --line: #dae0d5;
  --green: #245c46;
  --lime: #d7edab;
  --white: #fff;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 "DM Sans",
    sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, sans-serif;
  line-height: 1.13;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
}
h1 {
  font-size: clamp(46px, 5.9vw, 80px);
  font-weight: 650;
}
h2 {
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 600;
}
h3 {
  font-size: 24px;
  font-weight: 650;
}
p {
  margin: 0 0 20px;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #9b651f;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  color: inherit;
}
::selection {
  background: var(--lime);
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding-inline: 32px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 50;
  padding: 12px;
  background: white;
}
.skip:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 248, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    800 28px Manrope,
    sans-serif;
  letter-spacing: -1.4px;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover,
.footer a:hover {
  color: #688741;
}
.nav .button {
  font-size: 13px;
  padding: 12px 20px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: auto;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #173f30;
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover {
  background: #edf0e7;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 24px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6b9050;
  box-shadow: 0 0 0 4px #e5ecd9;
  display: inline-block;
}
.hero {
  padding: 76px 0 52px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 35px;
  align-items: center;
}
.hero h1 em {
  font-style: normal;
  color: #739451;
}
.hero-copy > p {
  max-width: 465px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
}
.micro {
  font-size: 12px !important;
  color: var(--muted);
}
.micro span {
  padding-inline: 8px;
  color: #9ba78f;
}
.hero-art {
  position: relative;
  height: 570px;
  background: #e9eddc;
  border-radius: 45% 45% 24px 24px;
  isolation: isolate;
  margin-left: 10px;
}
.orbit {
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid #cfdbc3;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.orbit:after {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid #cfdbc3;
  border-radius: 50%;
}
.phone {
  border: 6px solid #263b31;
  border-radius: 29px;
  overflow: hidden;
  box-shadow: 0 25px 40px #173c3420;
  background: #fff;
}
.phone img {
  width: 100%;
  height: auto;
}
.hero-phone {
  position: absolute;
  width: 232px;
  left: 18%;
  top: 35px;
  transform: rotate(-5deg);
}
.hero-phone.back {
  width: 201px;
  left: 55%;
  top: 95px;
  transform: rotate(8deg);
  z-index: -1;
}
.float-note {
  position: absolute;
  background: white;
  border: 1px solid #e4e8dc;
  border-radius: 14px;
  padding: 15px 19px;
  box-shadow: 0 12px 30px #213a3010;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: center;
}
.float-note strong {
  display: block;
  font-size: 14px;
}
.float-note .tick {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #e9f1dc;
  font-size: 18px;
}
.note-top {
  top: 7px;
  right: -5px;
}
.note-bottom {
  bottom: 35px;
  left: 0;
}
.art-caption {
  position: absolute;
  bottom: 9px;
  right: 20px;
  font-size: 10px;
  color: #53684d;
}
.audience {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.audience > span {
  font-size: 12px;
  color: var(--muted);
}
.audience-list {
  display: flex;
  gap: 33px;
  flex-wrap: wrap;
  font:
    600 14px Manrope,
    sans-serif;
}
.section {
  padding: 92px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 40px;
}
.section-head h2 {
  max-width: 590px;
  margin-bottom: 0;
}
.section-head > p {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 5px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 18px;
  background: #fff9;
  position: relative;
  overflow: hidden;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
}
.feature a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.feature h3 {
  font-size: 22px;
}
.icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid #dfe6d5;
  border-radius: 12px;
  background: #edf1e6;
  margin-bottom: 26px;
  font-size: 23px;
}
.feature.wide {
  grid-column: span 2;
  background: #eaf0e2;
  display: flex;
  gap: 30px;
  align-items: center;
}
.feature.wide > div:first-child {
  max-width: 340px;
}
.mini-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.mini-flow span {
  background: #fff;
  padding: 22px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.mini-flow b {
  font-weight: 400;
}
.dark {
  background: #173d32;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark .eyebrow {
  color: #c5d7b6;
}
.dark h2 {
  max-width: 600px;
}
.offline-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.dark p {
  color: #c0d0c6;
  font-size: 15px;
}
.dark .button {
  background: var(--lime);
  color: var(--ink);
  border: 0;
}
.offline-points {
  display: grid;
  gap: 24px;
}
.offline-point {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ffffff20;
  padding-bottom: 22px;
}
.offline-point span {
  font-size: 12px;
  color: #cae49f;
  line-height: 30px;
}
.offline-point h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.offline-point p {
  font-size: 13px;
  margin: 0;
}
.showcase {
  background: #eef1e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.tab {
  border: 1px solid var(--line);
  padding: 11px 20px;
  background: transparent;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.tab[aria-selected="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-visual {
  background: #dce4d0;
  border-radius: 24px;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}
.showcase-visual .phone {
  width: 218px;
  transform: rotate(-3deg);
}
.showcase-copy h3 {
  font-size: 33px;
}
.showcase-copy p {
  color: var(--muted);
}
.check-list {
  padding: 0;
  list-style: none;
  font-size: 14px;
  margin: 25px 0;
}
.check-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  border-top: 1px solid #b8c5ad;
  padding-top: 25px;
}
.step-number {
  font:
    500 13px Manrope,
    sans-serif;
  color: #566d44;
  margin-bottom: 26px;
  display: block;
}
.step h3 {
  font-size: 22px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.faq-intro p {
  color: var(--muted);
  font-size: 14px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 16px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 30px 0 0;
}
.cta {
  border-radius: 24px;
  background: #e3eccf;
  padding: 60px;
  text-align: center;
  margin-bottom: 75px;
  position: relative;
}
.cta h2 {
  max-width: 640px;
  margin: 0 auto 20px;
}
.cta p {
  color: var(--muted);
}
.cta .actions {
  justify-content: center;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
}
.footer-links a {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 25px;
  font-size: 11px;
  color: var(--muted);
}
/* Manual */
.manual-hero {
  padding: 58px 0 42px;
  border-bottom: 1px solid var(--line);
  background: #edf1e5;
}
.manual-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
}
.manual-hero p {
  color: var(--muted);
  max-width: 700px;
}
.manual-tools {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 25px;
}
.search-box {
  background: white;
  border: 1px solid #c4cdbd;
  padding: 13px 17px;
  max-width: 480px;
  flex: 1;
  border-radius: 8px;
  min-width: 0;
}
.manual-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding-block: 45px 90px;
}
.toc {
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 135px);
  overflow: auto;
  padding-right: 10px;
}
.toc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  color: var(--muted);
}
.toc a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  text-decoration: none;
  border-left: 2px solid var(--line);
}
.toc a:hover,
.toc a.active {
  background: #e7eddc;
  border-color: var(--green);
  color: var(--green);
}
.manual-section {
  padding-bottom: 48px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 112px;
}
.manual-section h2 {
  font-size: 31px;
}
.manual-section h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 26px 0 12px;
}
.manual-section p,
.manual-section li {
  font-size: 14px;
  color: #43594e;
  line-height: 1.85;
}
.manual-section ol,
.manual-section ul {
  padding-left: 23px;
}
.manual-section li {
  padding: 5px 0;
}
.chapter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #566d44;
  display: block;
  margin-bottom: 13px;
}
.instruction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 32px;
  align-items: start;
}
.manual-shot {
  margin: 0;
  cursor: zoom-in;
}
.manual-shot img {
  border: 1px solid #c8d1c3;
  border-radius: 16px;
  background: #fff;
  width: 100%;
}
.manual-shot figcaption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
.callout {
  border-left: 3px solid #799551;
  padding: 17px 20px;
  background: #eaf0df;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
  font-size: 13px;
  line-height: 1.8;
}
.callout.warning {
  border-color: #b88535;
  background: #f4ead7;
}
.manual-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 20px 0;
}
.manual-table th,
.manual-table td {
  text-align: left;
  vertical-align: top;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
}
.manual-table th {
  background: #eaf0df;
  font-weight: 600;
}
.manual-status {
  font-size: 12px;
  min-height: 24px;
  margin-top: 10px;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.empty-search {
  padding: 30px;
  background: #edf1e5;
  border-radius: 12px;
}
.lightbox {
  border: 0;
  border-radius: 16px;
  padding: 45px 20px 20px;
  max-height: 95vh;
  max-width: 95vw;
  background: var(--paper);
}
.lightbox::backdrop {
  background: #10281fdd;
}
.lightbox img {
  max-height: 80vh;
  width: auto;
  margin: auto;
}
.lightbox button {
  position: absolute;
  right: 10px;
  top: 7px;
  border: 0;
  background: none;
  font-size: 20px;
}
.lightbox p {
  font-size: 12px;
  margin: 10px 0 0;
  text-align: center;
}
.manual-shot button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  width: 100%;
}
@media (min-width: 1450px) {
  .wrap {
    max-width: 1280px;
  }
  .hero-grid {
    gap: 65px;
  }
}
@media (max-width: 1000px) {
  .hero h1 {
    font-size: 58px;
  }
  .hero-art {
    height: 505px;
  }
  .hero-phone {
    width: 205px;
    left: 8%;
    top: 35px;
  }
  .hero-phone.back {
    width: 178px;
    left: 50%;
    top: 95px;
  }
  .float-note {
    padding: 11px 13px;
    font-size: 11px;
  }
  .note-top {
    right: -10px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .feature.wide {
    grid-column: span 1;
    display: block;
  }
  .mini-flow {
    margin-top: 25px;
  }
  .offline-grid,
  .showcase-grid {
    gap: 40px;
  }
  .manual-layout {
    gap: 30px;
    grid-template-columns: 195px minmax(0, 1fr);
  }
  .instruction-grid {
    grid-template-columns: minmax(0, 1fr) 165px;
    gap: 20px;
  }
  .nav-links {
    gap: 20px;
  }
  .audience-list {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 22px;
  }
  .nav {
    height: 72px;
  }
  .brand {
    font-size: 25px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 24px;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
  }
  .hero {
    padding: 45px 0 35px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(46px, 9vw, 65px);
    max-width: 600px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-art {
    height: 525px;
    margin: 5px 0 0;
    max-width: 510px;
    width: 100%;
    justify-self: center;
  }
  .hero-phone {
    width: 214px;
    left: 17%;
    top: 38px;
  }
  .hero-phone.back {
    width: 184px;
    left: 52%;
    top: 92px;
  }
  .note-top {
    right: 3px;
  }
  .note-bottom {
    bottom: 27px;
    left: 5px;
  }
  .audience {
    margin-top: 35px;
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .audience-list {
    gap: 18px;
    font-size: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head > p {
    max-width: 500px;
    margin-top: 20px;
  }
  .features {
    gap: 14px;
  }
  .feature {
    padding: 22px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature.wide {
    grid-column: span 2;
    display: flex;
  }
  .mini-flow {
    display: none;
  }
  .offline-grid,
  .showcase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .showcase-visual {
    min-height: 510px;
  }
  .showcase-copy h3 {
    font-size: 30px;
  }
  .steps {
    gap: 22px;
  }
  .step h3 {
    font-size: 19px;
  }
  .cta {
    padding: 40px 24px;
    margin: 0 22px 50px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
  .manual-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .toc {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    padding: 15px;
    border-radius: 12px;
  }
  .toc-label {
    grid-column: span 2;
  }
  .toc a {
    font-size: 11px;
    padding: 7px 9px;
  }
  .manual-hero {
    padding: 35px 0 25px;
  }
  .manual-section h2 {
    font-size: 28px;
  }
  .instruction-grid {
    grid-template-columns: minmax(0, 1fr) 160px;
  }
  .manual-tools .button {
    padding: 14px;
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .hero-art {
    height: 470px;
  }
  .hero-phone {
    width: 186px;
    left: 12%;
  }
  .hero-phone.back {
    width: 158px;
    left: 51%;
    top: 95px;
  }
  .note-bottom {
    bottom: 20px;
  }
  .float-note strong {
    font-size: 12px;
  }
  .art-caption {
    font-size: 8px;
    bottom: 3px;
  }
  .features,
  .steps {
    grid-template-columns: 1fr;
  }
  .feature.wide {
    grid-column: auto;
  }
  .feature {
    padding: 26px;
  }
  .section h2 {
    font-size: 33px;
  }
  .instruction-grid {
    grid-template-columns: 1fr;
  }
  .manual-shot {
    max-width: 240px;
    margin: 12px auto;
  }
  .manual-tools {
    flex-wrap: wrap;
  }
  .search-box {
    flex-basis: 100%;
  }
  .footer-links {
    gap: 18px;
  }
  .tabs {
    gap: 6px;
  }
  .tab {
    padding: 9px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  body {
    background: white;
    color: black;
    font-size: 11pt;
  }
  .header,
  .footer,
  .toc,
  .manual-tools,
  .manual-status,
  .skip,
  .lightbox {
    display: none !important;
  }
  .wrap {
    padding: 0;
    max-width: none;
  }
  .manual-hero {
    padding: 0;
    background: white;
  }
  .manual-hero h1 {
    font-size: 30pt;
  }
  .manual-layout {
    display: block;
    padding: 20px 0;
  }
  .manual-section[hidden] {
    display: block !important;
  }
  .manual-section {
    margin: 0 0 20px;
    padding: 0 0 20px;
    break-inside: auto;
  }
  .instruction-grid {
    grid-template-columns: 1fr 150px;
  }
  .manual-section h2 {
    font-size: 21pt;
    break-after: avoid;
  }
  .manual-shot {
    break-inside: avoid;
    max-width: 150px;
  }
  .manual-section p,
  .manual-section li {
    font-size: 10pt;
  }
  .callout {
    break-inside: avoid;
  }
  a {
    text-decoration: none;
  }
  .empty-search {
    display: none !important;
  }
  @page {
    size: A4;
    margin: 18mm;
  }
}

/* Language availability and everyday product benefits. */
.language-section {
  background: #eaf0e2;
  border-block: 1px solid var(--line);
}
.language-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 32px;
}
.language-intro p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.language-intro .button {
  flex-shrink: 0;
}
.language-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-list li {
  padding: 18px 10px;
  border: 1px solid #cdd9c3;
  border-radius: 12px;
  background: #f8faf4;
  text-align: center;
}
.language-list span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}
.language-list small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 5px;
}
.language-note {
  margin: 22px 0 0;
}
.owner-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 18px;
}
.owner-note p {
  max-width: 730px;
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
}
.owner-note a {
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .language-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .owner-note {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 760px) {
  .language-intro {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .language-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .language-list span {
    font-size: 15px;
  }
  .owner-note {
    padding: 24px;
  }
}
@media (max-width: 360px) {
  .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Actual calendar and day-detail screens for the History feature. */
.history-section {
  background: #f0eee5;
  border-block: 1px solid #dfdfd1;
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.history-copy > p {
  font-size: 15px;
  color: var(--muted);
}
.history-benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.history-benefits li {
  border-top: 1px solid #d5d9c9;
  padding: 17px 0;
}
.history-benefits strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.history-benefits span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.history-path {
  margin: 15px 0 0;
}
.history-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.history-screens figure {
  margin: 0;
  min-width: 0;
}
.history-screens figure:nth-child(2) {
  margin-top: 52px;
}
.history-screens a {
  display: block;
  border: 5px solid #263b31;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 30px #173c3418;
  cursor: zoom-in;
}
.history-screens img {
  width: 100%;
}
.history-screens figcaption {
  font-size: 11px;
  margin-top: 17px;
  color: var(--muted);
}
.history-screens figcaption span {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 7px;
}
.history-screens > p {
  grid-column: 1 / -1;
  text-align: center;
  margin: 2px 0 0;
}
@media (max-width: 1000px) {
  .history-grid {
    gap: 32px;
  }
  .history-screens {
    gap: 14px;
  }
}
@media (max-width: 760px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .history-screens {
    max-width: 540px;
    margin-inline: auto;
  }
}
@media (max-width: 440px) {
  .history-screens {
    gap: 12px;
  }
  .history-screens a {
    border-width: 3px;
    border-radius: 16px;
  }
  .history-screens figcaption {
    font-size: 10px;
  }
  .history-screens figure:nth-child(2) {
    margin-top: 30px;
  }
}
/* Legal pages */
.legal-page { max-width: 780px; padding-top: 150px; padding-bottom: 100px; }
.legal-page h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin: 12px 0; }
.legal-page h2 { font-size: 24px; line-height: 1.25; margin: 40px 0 10px; }
.legal-page p { max-width: 700px; color: var(--muted); line-height: 1.8; margin: 0 0 18px; }
.legal-page a { color: var(--gold, #d4af37); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { font-size: 14px; }
