:root {
  --navy-950: #04102b;
  --navy-900: #07183d;
  --navy-800: #102758;
  --navy-700: #19366f;
  --gold-500: #d7a44d;
  --gold-400: #edc979;
  --gold-200: #f4e4bd;
  --paper: #f8f5ee;
  --white: #ffffff;
  --ink: #10192d;
  --muted: #657087;
  --line: rgba(13, 35, 78, 0.12);
  --shadow: 0 24px 70px rgba(6, 22, 55, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 16, 43, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(237, 201, 121, 0.45);
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-400);
}

.site-nav .nav-cta {
  padding: 9px 18px;
  color: var(--navy-950);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: 180ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(53, 88, 162, 0.36), transparent 33%),
    linear-gradient(135deg, var(--navy-950), #071a49 56%, #0a275f);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
  min-height: 780px;
  padding-top: 100px;
}

.hero-copy {
  padding-bottom: 15px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-500);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-400);
}

.hero h1 {
  margin: 0;
  font-size: clamp(45px, 5.8vw, 76px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0.03em;
}

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

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-width: 132px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 14px 35px rgba(215, 164, 77, 0.2);
}

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

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.chart-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(237, 201, 121, 0.32);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: rotate(1.5deg);
}

.chart-head,
.chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.chart-head {
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.chart-tag {
  padding: 3px 9px;
  color: var(--gold-400);
  border: 1px solid rgba(237, 201, 121, 0.28);
  border-radius: 999px;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 82px);
  grid-template-areas:
    "p1  p2     p3     p4"
    "p12 center center p5"
    "p11 center center p6"
    "p10 p9     p8     p7";
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.chart-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chart-grid b {
  color: var(--gold-200);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.chart-grid small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 11px;
}

.chart-grid .chart-center {
  grid-area: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, #f9e8bc, #d6a44d);
}

.palace-1 { grid-area: p1; }
.palace-2 { grid-area: p2; }
.palace-3 { grid-area: p3; }
.palace-4 { grid-area: p4; }
.palace-5 { grid-area: p5; }
.palace-6 { grid-area: p6; }
.palace-7 { grid-area: p7; }
.palace-8 { grid-area: p8; }
.palace-9 { grid-area: p9; }
.palace-10 { grid-area: p10; }
.palace-11 { grid-area: p11; }
.palace-12 { grid-area: p12; }

.chart-center strong {
  margin: 4px 0;
  font-size: 25px;
  letter-spacing: 0.16em;
}

.chart-center span {
  font-size: 11px;
  letter-spacing: 0.24em;
}

.chart-footer {
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.chart-footer i {
  width: 3px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 50%;
}

.floating-seal {
  position: absolute;
  right: -20px;
  bottom: -22px;
  width: 88px;
  height: 88px;
  display: grid;
  place-content: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border: 5px solid var(--navy-900);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(237, 201, 121, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
  right: -180px;
  top: 70px;
}

.orbit-two {
  width: 740px;
  height: 740px;
  right: -270px;
  top: -20px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.ai-copy h2,
.download-card h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 650;
  line-height: 1.35;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading-left .eyebrow {
  justify-content: flex-start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 31px 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(13, 35, 78, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(215, 164, 77, 0.46);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(13, 35, 78, 0.11);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(7, 24, 61, 0.14);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  border: 1px solid rgba(215, 164, 77, 0.25);
  border-radius: 17px;
  background: #fffaf0;
  font-size: 24px;
  font-weight: 700;
}

.feature-card h3 {
  margin: 27px 0 10px;
  color: var(--navy-900);
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.classics {
  overflow: hidden;
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.classics-art {
  position: relative;
  min-height: 440px;
}

.classics-art::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(215, 164, 77, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.book {
  position: absolute;
  width: 220px;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px 15px 15px 6px;
  box-shadow: var(--shadow);
}

.book::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid currentColor;
  opacity: 0.35;
}

.book span {
  z-index: 1;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.book small {
  z-index: 1;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.book-back {
  top: 33px;
  left: 3%;
  color: rgba(255, 255, 255, 0.7);
  background: #526183;
  transform: rotate(-12deg);
}

.book-mid {
  top: 68px;
  right: 3%;
  color: #f2dfb3;
  background: #7e352f;
  transform: rotate(11deg);
}

.book-front {
  top: 48px;
  left: 50%;
  z-index: 2;
  color: var(--navy-900);
  background: linear-gradient(135deg, #f7e9c5, #d4ae65);
  transform: translateX(-50%) rotate(-1deg);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-800);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.ai-section {
  background: var(--white);
}

.ai-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
  padding: 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(60, 99, 181, 0.38), transparent 34%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.ai-panel::before {
  content: "玄";
  position: absolute;
  right: -25px;
  bottom: -150px;
  color: rgba(255, 255, 255, 0.03);
  font-size: 380px;
  font-weight: 800;
  line-height: 1;
}

.ai-copy,
.ai-dialog {
  position: relative;
  z-index: 1;
}

.ai-copy h2 {
  color: var(--white);
}

.ai-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.ai-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.ai-badges span {
  padding: 6px 12px;
  color: var(--gold-200);
  border: 1px solid rgba(237, 201, 121, 0.25);
  border-radius: 999px;
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
  background: rgba(237, 201, 121, 0.06);
}

.ai-dialog {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.dialog-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
}

.dialog-label i {
  width: 9px;
  height: 9px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215, 164, 77, 0.14);
}

.ai-dialog p,
.ai-dialog li {
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
}

.ai-dialog ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 17px 0;
}

.ai-dialog small {
  display: block;
  padding-top: 15px;
  color: #788196;
  border-top: 1px solid var(--line);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.6;
}

.download-section {
  padding-top: 0;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffaf0, #f7f2e8);
}

.download-card img {
  width: 92px;
  height: 92px;
  border-radius: 23px;
  box-shadow: 0 15px 30px rgba(6, 22, 55, 0.2);
}

.download-card .eyebrow {
  margin-bottom: 8px;
}

.download-card h2 {
  font-size: 32px;
}

.download-card p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: var(--navy-900);
  border: 1px solid rgba(7, 24, 61, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.download-link {
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.download-link:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.about-section {
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.about-copy {
  color: var(--muted);
  font-size: 16px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-main {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 13px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold-400);
}

.footer-legal {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 12px;
}

.legal-page {
  min-height: 100vh;
  padding: 132px 0 80px;
  background: var(--paper);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px clamp(24px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 65px rgba(13, 35, 78, 0.08);
}

.legal-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 5vw, 48px);
}

.legal-meta {
  margin: 10px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

.legal-card h2 {
  margin: 36px 0 12px;
  color: var(--navy-900);
  font-size: 21px;
}

.legal-card p,
.legal-card li {
  color: #4f5a70;
  font-family: "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
}

.legal-card li + li {
  margin-top: 7px;
}

.legal-callout {
  padding: 18px 20px;
  margin: 26px 0;
  border-left: 3px solid var(--gold-500);
  background: #fffaf0;
}

.back-home {
  display: inline-flex;
  margin-top: 36px;
  color: var(--navy-800);
  font-weight: 700;
}

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

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

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

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

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split-layout,
  .ai-panel {
    gap: 46px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .ai-panel {
    padding: 54px 42px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header {
    background: rgba(4, 16, 43, 0.96);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    height: calc(100vh - 66px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 22px;
    background: var(--navy-950);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }

  .site-nav .nav-cta {
    margin-top: 22px;
    padding: 12px 18px;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 134px 0 90px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .section {
    padding: 82px 0;
  }

  .split-layout,
  .ai-panel,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 58px;
  }

  .classics-art {
    order: 2;
  }

  .ai-panel {
    padding: 45px 28px;
  }

  .download-card {
    grid-template-columns: auto 1fr;
    padding: 30px;
  }

  .coming-soon {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .about-grid {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .chart-card {
    padding: 14px;
    border-radius: 22px;
    transform: none;
  }

  .chart-grid > div {
    min-height: 0;
  }

  .chart-grid {
    grid-template-rows: repeat(4, 69px);
  }

  .chart-grid b {
    font-size: 14px;
  }

  .floating-seal {
    right: -6px;
    width: 72px;
    height: 72px;
    font-size: 17px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .classics-art {
    min-height: 360px;
    transform: scale(0.82);
    margin: -32px -50px;
  }

  .book {
    width: 190px;
    height: 290px;
  }

  .download-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .download-card img {
    width: 76px;
    height: 76px;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px 22px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 0;
  }

  .legal-page {
    padding-top: 104px;
  }

  .legal-card {
    border-radius: 20px;
  }
}
