:root {
  --ink: #332920;
  --navy: #3D4745;
  --blue: #56625E;
  --blue-light: #9CB6AB;
  --paper: #F0DFC7;
  --paper-2: #FFF7E9;
  --text: #443428;
  --muted: #6B5E52;
  --line: rgba(116, 77, 37, .17);
  --yellow: #E6B85E;
  --orange: #C67149;
  --teal: #A8AD82;
  --sand: #AA8D61;
  --white: #FFFFFF;
  --shadow: rgba(95, 50, 13, .14);
  --max: 1120px;
  --reading: 790px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(230, 184, 94, .24), transparent 24rem),
    radial-gradient(circle at 90% 28%, rgba(168, 173, 130, .20), transparent 28rem),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:not(.brand):not(.nav-link):not(.button):not(.page-card) {
  text-decoration-color: rgba(116, 77, 37, 0.42);
  text-underline-offset: 0.18em;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: rgba(51, 41, 32, 0.94);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--yellow);
}

.nav-link.button {
  padding: 0.62rem 0.92rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 800;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(230, 184, 94, 0.28), transparent 20rem),
    radial-gradient(circle at 12% 88%, rgba(168, 173, 130, 0.3), transparent 24rem),
    linear-gradient(145deg, var(--navy), var(--blue) 72%, var(--blue-light));
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -5.5rem;
  width: 17rem;
  height: 17rem;
  border: 2.8rem dotted rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(17deg);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: grid;
  align-content: center;
  padding-block: 5.5rem;
}

.legal-hero-inner > * {
  min-width: 0;
}

.legal-hero h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.language-control {
  width: 364px;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.5rem 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 700;
}

.language-control select {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 2.2rem 0 0.85rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

[dir="rtl"] .language-control select {
  padding: 0 0.85rem 0 2.2rem;
}

.topbar .language-control {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.topbar .language-control label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.topbar .language-control select {
  width: 160px;
  min-height: 40px;
  max-width: 180px;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 6.4rem);
}

.legal-hero .lead {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.app-store-band {
  width: 100%;
}

.app-store-band-top {
  padding: 2rem 0 1.85rem;
}

.app-store-band-bottom {
  padding: 2.75rem 0 4.25rem;
}

.app-store-band-inner {
  display: flex;
  justify-content: center;
}

.app-store-badge-link {
  display: inline-block;
}

.app-store-badge {
  display: block;
  width: min(330px, 82vw);
  height: auto;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) 220px;
  gap: 4rem;
  align-items: start;
  padding-block: 5rem;
}

.document h2,
.support-section h2 {
  margin: 3.4rem 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.document h2:first-child {
  margin-top: 0;
}

.document h3 {
  margin: 2.2rem 0 0.7rem;
  font-size: 1.2rem;
}

.document p,
.document li {
  color: #675b50;
}

.document a,
.faq a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.document ul {
  padding-left: 1.25rem;
}

.document li + li {
  margin-top: 0.5rem;
}

.summary {
  padding: 1.4rem;
  border: 1px solid rgba(198, 113, 73, 0.28);
  border-radius: 22px;
  background: rgba(230, 184, 94, 0.18);
}

.summary strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.toc {
  position: sticky;
  top: 104px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 247, 233, 0.82);
}

.toc strong {
  display: block;
  margin-bottom: 0.65rem;
}

.toc a {
  display: block;
  padding: 0.32rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.toc a:hover {
  color: var(--text);
}

.support-main {
  padding-block: 5rem;
}

.support-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  min-height: 232px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

.stat-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
}

.stat-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.support-section {
  max-width: 900px;
  margin-inline: auto;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.faq details[open] {
  background: var(--white);
  box-shadow: 0 14px 36px rgba(95, 50, 13, 0.09);
}

.faq summary {
  position: relative;
  padding: 1.05rem 3.2rem 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: #675b50;
}

.faq-answer p {
  margin: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.page-card {
  position: relative;
  min-height: 170px;
  padding: 1.35rem;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue-light));
  box-shadow: var(--shadow);
}

.page-card span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-card strong {
  display: block;
  margin-top: 1.7rem;
  font-size: 1.35rem;
}

.page-card::after {
  content: "↗";
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  color: var(--teal);
  font-size: 1.5rem;
}

.updated {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
}

.footer a:hover {
  color: var(--yellow);
}

@media (max-width: 920px) {
  .topbar-inner {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem 0.85rem;
    padding-block: 0.75rem 0.6rem;
  }

  .topbar .language-control {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }

  .topbar .language-control select {
    width: 138px;
    max-width: 34vw;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .nav-link {
    white-space: nowrap;
  }

  .nav-link.button {
    display: none;
  }
}

@media (max-width: 820px) {
  .legal-hero-inner {
    min-height: 350px;
    padding-block: 4rem;
  }

  .content-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .toc {
    position: static;
    grid-row: 1;
  }

  .support-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 3rem;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 2rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

/* Home page */
.home {
  color: var(--white);
  background: var(--navy);
}

.home .topbar {
  background: rgba(51, 41, 32, 0.86);
}

.game-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(230, 184, 94, 0.32), transparent 28rem),
    radial-gradient(circle at 12% 82%, rgba(168, 173, 130, 0.2), transparent 24rem),
    linear-gradient(145deg, #332920, #4c5753 72%, #74807b);
}

.game-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem 3rem;
}

.game-kicker {
  margin: 0 0 0.9rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.07em;
}

.hero-copy h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-summary {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.hero-facts span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.hero-character {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-character img {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  display: block;
  transform: rotate(2deg);
}

.sun-disc {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 34px rgba(230, 184, 94, 0.1);
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 3rem;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  background: var(--yellow);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee div {
  width: max-content;
  padding-block: 0.85rem;
  animation: ticker 22s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.game-section {
  padding-block: 7rem;
  color: var(--text);
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.battle-copy h2,
.languages-grid h2,
.support-strip h2,
.final-game-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading.wide {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 3rem;
}

.mechanic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.mechanic-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper-2);
}

.mechanic-card.featured {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1.5rem) rotate(-1deg);
}

.mechanic-card > span {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 950;
}

.mechanic-card h3 {
  margin: auto 0 0.75rem;
  font-size: 1.8rem;
}

.mechanic-card p {
  margin: 0;
  color: var(--muted);
}

.mechanic-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.battle-section {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.battle-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(51, 41, 32, 0.96), rgba(61, 71, 69, 0.64) 55%, rgba(61, 71, 69, 0.12)),
    url("images/background.png") center 58% / cover;
}

.battle-copy {
  position: relative;
  z-index: 2;
  padding-block: 7rem;
}

.battle-copy h2 {
  max-width: 850px;
}

.battle-points {
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.battle-points div {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(51, 41, 32, 0.7);
  backdrop-filter: blur(12px);
}

.battle-points strong,
.battle-points span {
  display: block;
}

.battle-points strong {
  color: var(--yellow);
  font-size: 1.1rem;
}

.battle-points span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.screens-section {
  overflow: hidden;
  background: #ded9cc;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.phone {
  margin: 0;
  text-align: center;
}

.phone-screen {
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 46px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(95, 50, 13, 0.22);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen.crop-top img {
  height: 116%;
  object-position: center bottom;
}

.phone-center {
  transform: translateY(2rem);
}

.phone figcaption {
  margin-top: 1rem;
  font-weight: 900;
}

.languages-band {
  padding-block: 7rem;
  background: var(--blue);
}

.languages-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.language-cloud span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.support-strip-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
}

.support-strip h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.support-links {
  display: grid;
  gap: 0.75rem;
}

.support-links a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.support-links span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-links strong::after {
  content: " ↗";
  color: var(--orange);
}

.final-game-cta {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) max(7vw, 1.5rem);
  overflow: hidden;
  color: #2b1a0d;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 210, 91, 0.48), transparent 18rem),
    linear-gradient(145deg, #fff0bd, #f2c05c 56%, #88b9a6);
}

.final-game-cta > img {
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  justify-self: end;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(83, 45, 13, 0.24);
}

.final-game-cta > div {
  max-width: 560px;
  padding: 0;
}

.final-game-cta .button {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .game-hero-grid,
  .section-heading.wide,
  .languages-grid,
  .support-strip-grid {
    grid-template-columns: 1fr;
  }

  .game-hero-grid {
    padding-top: 4rem;
  }

  .mechanic-grid,
  .battle-points {
    grid-template-columns: 1fr;
  }

  .mechanic-card.featured {
    transform: none;
  }

  .phone-gallery {
    display: flex;
    width: auto;
    margin-inline: calc(50% - 50vw);
    padding: 1rem 5vw 4rem;
    overflow-x: auto;
    scroll-padding-inline: 5vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .phone {
    min-width: 260px;
    scroll-snap-align: center;
  }

  .phone-center {
    transform: none;
  }

  .final-game-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .final-game-cta > img {
    width: min(70%, 280px);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .support-links a {
    min-height: 94px;
  }

  .game-hero-grid {
    min-height: 0;
  }

  .hero-character {
    min-height: 420px;
  }

  .sun-disc {
    width: 330px;
    height: 330px;
  }

  .hero-sticker {
    right: 0;
    width: 100px;
    height: 100px;
  }

  .game-section,
  .languages-band {
    padding-block: 5rem;
  }

  .phone-gallery {
    gap: 1rem;
  }

  .phone {
    min-width: min(78vw, 300px);
  }

  .phone-screen {
    border-width: 6px;
    border-radius: 28px;
  }
}

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

  .topbar .language-control select {
    width: 128px;
    max-width: 42vw;
  }
}

/* Shared support and legal pages use Catch the Cookie's warm cookie palette. */
.topbar, .home .topbar { background: rgba(91, 54, 31, .94); }
body:not(.home) { background: radial-gradient(circle at 12% 12%, rgba(237, 187, 105, .32), transparent 22rem), radial-gradient(circle at 88% 18%, rgba(132, 177, 157, .28), transparent 24rem), linear-gradient(180deg, #FFFDF7, #F7E8CB 55%, #E6D5B8); }
.legal-hero { background: radial-gradient(circle at 82% 16%, rgba(237, 187, 105, .48), transparent 23rem), linear-gradient(145deg, #523728, #A46138 54%, #E9BD70); }
.summary { border-color: rgba(164, 97, 56, .3); background: rgba(237, 187, 105, .22); }
.toc, .stat-card, .faq details { border-color: rgba(164, 97, 56, .22); background: rgba(255, 251, 242, .8); }
.faq details[open] { background: #FFFFFF; box-shadow: 0 14px 36px rgba(82, 55, 40, .12); }
.document p, .document li, .faq-answer { color: #604B3C; }
.page-card { background: linear-gradient(145deg, #523728, #9B5E38 56%, #D7A655); }
.page-card::after { color: #D5E7B4; }
.footer { background: #342219; }
