:root {
  color-scheme: dark;
  --forest-950: #071a10;
  --forest-900: #0b2717;
  --forest-800: #123c23;
  --forest-700: #1b5a31;
  --forest-600: #23763e;
  --parchment: #fff0c2;
  --parchment-deep: #e7c77a;
  --ink: #15361f;
  --ink-soft: #416148;
  --gold: #f3c54d;
  --gold-deep: #a66e12;
  --cream: #fff9e7;
  --white: #fff;
  --shadow-deep: 0 24px 70px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 18px 40px rgba(46, 29, 6, 0.26);
  --content-width: 1480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--forest-950);
  color: var(--cream);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffe06f;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--parchment);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px clamp(16px, 3vw, 48px);
  pointer-events: none;
  transition: padding 220ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  width: max-content;
  max-width: 100%;
  min-height: 72px;
  padding: 9px 18px 9px 12px;
  border: 1px solid rgba(255, 229, 161, 0.85);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 240, 0.98), rgba(246, 229, 184, 0.96));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  color: #142a1c;
  pointer-events: auto;
  transition: min-height 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-scrolled .site-nav {
  min-height: 60px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-orb {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid #d7a82f;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #47c45b, #086424 58%, #032d11);
  box-shadow: inset 0 0 0 2px #ffe56e, 0 4px 10px rgba(39, 92, 37, 0.35);
  color: #fff4aa;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 2px #573603;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: #12283a;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: #d95322;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: #c8451e;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #171108 url("./landing/hero-workshop.jpg") center center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 4, 0.88) 0%, rgba(4, 8, 5, 0.67) 34%, rgba(5, 8, 5, 0.08) 65%),
    linear-gradient(0deg, rgba(2, 5, 3, 0.48), transparent 36%);
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 64px), var(--content-width));
  margin: 0 auto;
  padding: 132px 0 90px;
}

.hero-copy {
  width: min(630px, 48vw);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.8);
}

.hero-logo {
  width: min(500px, 38vw);
  height: auto;
  margin: 0 0 -12px -35px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}

.hero h1,
.section-heading h2,
.download-copy h2,
.faq-heading h2,
.parchment-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff8dc;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

.hero-lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: #fffbe9;
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 700;
}

.hero-support {
  max-width: 550px;
  margin: 10px 0 0;
  color: rgba(255, 248, 220, 0.84);
  font-size: 1rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  justify-content: center;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  color: white;
  text-decoration: none;
  text-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

a.store-button:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.store-button.is-coming {
  border-style: dashed;
  cursor: default;
  opacity: 0.78;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.store-button small {
  font-size: 0.7rem;
}

.store-button strong {
  font-size: 1.26rem;
  letter-spacing: -0.02em;
}

.store-mark {
  width: 34px;
  height: 38px;
  flex: 0 0 auto;
}

.app-store-mark {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 24px;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-cue i {
  width: 20px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.scroll-cue i::after {
  display: block;
  width: 4px;
  height: 7px;
  margin: 5px auto 0;
  border-radius: 3px;
  background: currentColor;
  content: "";
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.features {
  position: relative;
  display: flex;
  min-height: clamp(760px, 58vw, 1060px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 76px max(5vw, 28px);
  background: #6bab52 url("./landing/feature-forest.jpg") center center / cover no-repeat;
}

.feature-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 43, 23, 0.18), transparent 63%);
}

.parchment-card {
  position: relative;
  width: min(620px, 43vw);
  padding: clamp(34px, 4.2vw, 64px);
  border: 2px solid #e0b650;
  border-radius: 34px 12px 38px 18px;
  background:
    radial-gradient(circle at 10% 8%, rgba(195, 143, 47, 0.15), transparent 25%),
    radial-gradient(circle at 90% 82%, rgba(195, 143, 47, 0.13), transparent 28%),
    linear-gradient(135deg, #fff6d8, #f6dfaa 65%, #efd28f);
  box-shadow: var(--shadow-deep), inset 0 0 50px rgba(151, 92, 17, 0.1), inset 0 0 0 7px rgba(255, 251, 225, 0.45);
  color: var(--ink);
}

.parchment-card::before,
.parchment-card::after {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: #b77a17;
  content: "";
  opacity: 0.7;
}

.parchment-card::before {
  top: 12px;
  left: 12px;
  border-top: 3px solid;
  border-left: 3px solid;
  border-radius: 24px 0 0;
}

.parchment-card::after {
  right: 12px;
  bottom: 12px;
  border-right: 3px solid;
  border-bottom: 3px solid;
  border-radius: 0 0 24px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #27723d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parchment-card > .eyebrow {
  display: inline-block;
  padding: 9px 18px;
  border: 2px solid #d3a432;
  border-radius: 999px;
  background: linear-gradient(#218444, #0d5b2a);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.32), 0 5px 10px rgba(39, 75, 31, 0.2);
  color: #fff7d2;
  letter-spacing: 0.04em;
}

.parchment-card h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.75rem, 5vw, 5.2rem);
}

.parchment-card h2 span:nth-child(1) {
  color: #07562d;
}

.parchment-card h2 span:nth-child(2) {
  color: #b4481c;
}

.parchment-card h2 span:nth-child(3) {
  color: #5b2caf;
}

.section-lead {
  margin: 0;
  color: #243f2c;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 15px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(185, 126, 31, 0.4);
  border-radius: 22px;
  background: rgba(255, 248, 218, 0.72);
  box-shadow: 0 7px 16px rgba(101, 66, 16, 0.13), inset 0 1px rgba(255, 255, 255, 0.8);
}

.feature-list li > span:last-child {
  display: grid;
}

.feature-list strong {
  color: #143924;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.32rem);
}

.feature-list small {
  color: #34523c;
  font-size: 0.92rem;
  font-weight: 600;
}

.feature-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 3px solid #e9bf3e;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 0 5px 10px rgba(73, 53, 12, 0.2);
}

.feature-icon svg {
  width: 37px;
  fill: none;
  stroke: #fff5af;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.feature-icon-search {
  background: linear-gradient(145deg, #1cad4d, #08702d);
}

.feature-icon-brain {
  background: linear-gradient(145deg, #f0ad24, #c87808);
}

.feature-icon-star {
  background: linear-gradient(145deg, #7b4ce1, #4c259e);
}

.feature-icon-star svg {
  fill: #ffe568;
  stroke: #fff2a9;
  stroke-width: 2.5;
}

.adventure-end {
  position: relative;
  background-color: #153d22;
  background-image: linear-gradient(rgba(3, 18, 9, 0.12), rgba(3, 18, 9, 0.12)), url("./landing/footer-forest.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.screenshots-section {
  display: flex;
  min-height: clamp(760px, 55vw, 1050px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7vw, 120px) 0 50px;
  overflow: hidden;
}

.section-heading {
  width: min(calc(100% - 40px), 780px);
  margin: 0 auto 34px;
  text-align: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 17px;
  border: 1px solid rgba(255, 231, 151, 0.52);
  border-radius: 999px;
  background: rgba(10, 60, 30, 0.78);
  color: #ffec9a;
  backdrop-filter: blur(8px);
}

.section-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-heading p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.carousel {
  position: relative;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 0 62px 42px;
}

.carousel-track {
  display: grid;
  grid-auto-columns: clamp(205px, 18vw, 270px);
  grid-auto-flow: column;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  padding: 14px 10px 30px;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(255, 228, 117, 0.65) rgba(8, 41, 20, 0.35);
  scrollbar-width: thin;
  scroll-padding-inline: 12px;
  scroll-snap-type: inline mandatory;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(8, 41, 20, 0.35);
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 228, 117, 0.7);
}

.screenshot-card {
  position: relative;
  margin: 0;
  scroll-snap-align: center;
  transition: transform 220ms ease;
}

.screenshot-card:hover {
  transform: translateY(-8px);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border: 7px solid #142016;
  border-radius: 28px;
  background: #142016;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.42), 0 0 0 2px #d4ae3e, 0 0 0 5px rgba(255, 235, 148, 0.4);
}

.screenshot-card figcaption {
  width: calc(100% - 20px);
  margin: -10px auto 0;
  padding: 13px 10px 11px;
  border: 1px solid rgba(228, 184, 68, 0.75);
  border-radius: 0 0 14px 14px;
  background: linear-gradient(#165e32, #0b3e21);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  color: #fff2b6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 45%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #f1c957;
  border-radius: 50%;
  background: linear-gradient(#1a713c, #0b4424);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.25);
  color: #fff4bc;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.carousel-arrow span {
  margin-top: -5px;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.carousel-arrow.is-previous {
  left: 8px;
}

.carousel-arrow.is-next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  right: 50%;
  bottom: 0;
  display: flex;
  gap: 8px;
  transform: translateX(50%);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button[aria-current="true"] {
  width: 28px;
  border-radius: 999px;
  background: #ffdc68;
}

.download-section {
  display: grid;
  min-height: clamp(560px, 45vw, 860px);
  align-items: center;
  padding: 7vw max(4vw, 24px) 5vw;
  color: var(--ink);
}

.download-content {
  display: grid;
  width: min(100%, 1380px);
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  grid-template-columns: minmax(190px, 0.8fr) minmax(410px, 1.6fr) minmax(190px, 0.75fr);
  margin: 0 auto;
}

.download-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(79, 47, 5, 0.28));
}

.download-copy .eyebrow {
  margin-bottom: 9px;
  color: #24733d;
}

.download-copy h2 {
  max-width: 700px;
  margin: 0;
  color: #153b23;
  font-size: clamp(2.25rem, 4.3vw, 4.5rem);
}

.download-copy .store-buttons {
  margin-top: 20px;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  color: #35513b;
  font-size: 0.9rem;
  font-weight: 800;
}

.benefit-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.benefit-row b {
  font-size: 1.25rem;
}

.device-note {
  display: grid;
  justify-items: center;
  padding: 25px 20px;
  border: 2px solid rgba(147, 91, 19, 0.5);
  border-radius: 18px 28px 16px 24px;
  background: rgba(255, 235, 181, 0.62);
  box-shadow: var(--shadow-card);
  color: #24452e;
  text-align: center;
  transform: rotate(2deg);
}

.device-note svg {
  width: 82px;
  margin-bottom: 10px;
  fill: none;
  stroke: #3d5e43;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.device-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.device-note span {
  font-size: 0.86rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  gap: clamp(38px, 7vw, 110px);
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(80px, 9vw, 150px) max(6vw, 24px);
  background:
    radial-gradient(circle at 14% 22%, rgba(242, 196, 74, 0.1), transparent 25%),
    linear-gradient(145deg, #0d321c, #06180e);
}

.faq-heading {
  max-width: 520px;
  justify-self: end;
}

.faq-heading .eyebrow {
  color: #f0cc67;
}

.faq-heading h2 {
  margin: 0;
  color: #fff1b8;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.faq-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  max-width: 760px;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(241, 204, 103, 0.3);
  border-radius: 16px;
  background: rgba(255, 250, 224, 0.06);
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(241, 204, 103, 0.62);
  background: rgba(255, 250, 224, 0.1);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: #fff3c4;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid #f2ce68;
  border-bottom: 2px solid #f2ce68;
  content: "";
  transform: rotate(45deg) translateY(-4px);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-list details p {
  margin: -4px 24px 24px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  border-top: 1px solid rgba(244, 207, 105, 0.22);
  background: #041108;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  width: min(calc(100% - 48px), 1320px);
  min-height: 190px;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr auto auto;
  margin: 0 auto;
}

.footer-inner strong {
  color: #fff0ae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer-inner p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
}

.footer-inner a {
  color: #f7dfa0;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.copyright {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 1180px) {
  .nav-brand span:last-child {
    display: none;
  }

  .download-content {
    grid-template-columns: 0.72fr 1.55fr;
  }

  .device-note {
    display: none;
  }
}

@media (max-width: 1000px) {
  html {
    scroll-padding-top: 86px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .site-nav {
    position: relative;
    width: 100%;
    min-height: 62px;
    justify-content: space-between;
    padding: 7px 9px 7px 12px;
  }

  .nav-brand span:last-child {
    display: inline;
  }

  .brand-orb {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--forest-800);
    color: white;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px;
    border: 1px solid rgba(255, 229, 161, 0.8);
    border-radius: 22px;
    background: rgba(255, 247, 218, 0.98);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .nav-links {
    position: static;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .no-js .site-nav {
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 13px 4px;
    text-align: center;
  }

  .nav-links a::after {
    right: 35%;
    bottom: 8px;
    left: 35%;
  }

  .hero {
    min-height: max(860px, 100svh);
    background-position: 68% 18%;
    background-size: auto 100%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 6, 3, 0.52) 0%, rgba(3, 7, 4, 0.18) 26%, rgba(3, 7, 4, 0.08) 52%, rgba(3, 7, 4, 0.78) 100%),
      linear-gradient(90deg, rgba(3, 7, 4, 0.08), rgba(3, 7, 4, 0.22));
  }

  .hero-inner {
    width: min(calc(100% - 36px), 690px);
    align-items: flex-end;
    padding: clamp(320px, 46svh, 410px) 0 82px;
  }

  .hero-copy {
    width: 100%;
    padding: 26px;
    border: 1px solid rgba(255, 231, 157, 0.22);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 24, 13, 0.48), rgba(5, 18, 10, 0.76));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(5px);
  }

  .hero-logo {
    width: min(380px, 78vw);
    margin: -90px 0 -15px -22px;
  }

  .scroll-cue {
    display: none;
  }

  .features {
    min-height: auto;
    align-items: flex-end;
    padding: clamp(320px, 44svh, 400px) 18px 40px;
    background-position: 62% top;
    background-size: cover;
  }

  .feature-shade {
    background: linear-gradient(180deg, rgba(7, 31, 15, 0.2) 0%, rgba(7, 31, 15, 0.18) 28%, rgba(7, 31, 15, 0.7) 100%);
  }

  .parchment-card {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .adventure-end {
    background: none;
  }

  .screenshots-section {
    min-height: auto;
    padding: 80px 0 54px;
    background:
      linear-gradient(180deg, rgba(5, 29, 14, 0.18), rgba(5, 29, 14, 0.78)),
      url("./landing/footer-forest.jpg") 56% top / cover no-repeat,
      #174126;
  }

  .carousel {
    padding-right: 42px;
    padding-left: 42px;
  }

  .carousel-track {
    grid-auto-columns: clamp(200px, 42vw, 260px);
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .download-section {
    min-height: auto;
    padding: 80px 24px;
    background:
      radial-gradient(circle at 85% 12%, rgba(192, 134, 37, 0.17), transparent 28%),
      linear-gradient(135deg, #fff1c4, #e8c87d);
  }

  .download-content {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .download-logo {
    align-self: start;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    max-width: 720px;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-scrolled {
    padding: 8px;
  }

  .site-nav {
    min-height: 58px;
    border-radius: 20px;
  }

  .nav-brand {
    font-size: 0.98rem;
  }

  .brand-orb {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .hero {
    min-height: max(790px, 100svh);
    background-position: center 12%;
    background-size: auto min(100%, 760px);
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding-top: clamp(320px, 46svh, 410px);
    padding-bottom: 28px;
  }

  .hero-copy {
    padding: 20px 18px;
    background: linear-gradient(180deg, rgba(8, 24, 13, 0.36), rgba(5, 18, 10, 0.74));
    backdrop-filter: blur(4px);
  }

  .hero-logo {
    width: min(330px, 88vw);
    margin-top: -75px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.04rem;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }

  .features {
    padding: clamp(300px, 42svh, 370px) 12px 28px;
    background-position: 64% top;
  }

  .parchment-card {
    padding: 30px 20px;
    border-radius: 24px 9px 28px 12px;
  }

  .parchment-card > .eyebrow {
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .parchment-card h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .feature-list li {
    min-height: 80px;
    padding-right: 12px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .feature-icon svg {
    width: 30px;
  }

  .feature-list small {
    font-size: 0.8rem;
  }

  .screenshots-section {
    padding-top: 64px;
    background-position: 60% top;
  }

  .section-heading {
    width: min(calc(100% - 24px), 780px);
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .carousel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .carousel-track {
    grid-auto-columns: min(72vw, 250px);
    padding-right: max(10px, calc(14vw - 18px));
    padding-left: max(10px, calc(14vw - 18px));
  }

  .carousel-arrow {
    display: none;
  }

  .download-section {
    padding: 64px 18px;
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-logo {
    width: min(290px, 82vw);
    margin: -35px auto -20px;
  }

  .download-copy .store-buttons,
  .benefit-row {
    justify-content: center;
  }

  .benefit-row {
    display: grid;
  }

  .faq-section {
    padding: 72px 18px;
  }

  .faq-heading h2 {
    font-size: 3rem;
  }

  .faq-list summary {
    padding: 19px 18px;
  }

  .faq-list details p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0;
    text-align: center;
  }

  .footer-inner nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
