:root {
  color-scheme: light;
  --bg: #faf6f0;
  --surface: #ffffff;
  --surface-soft: #f0ece4;
  --text: #2e3230;
  --muted: #646a64;
  --line: #dedbd3;
  --accent: #4a7c59;
  --accent-dark: #2a6038;
  --green: #4a7c59;
  --amber: #705c30;
  --shadow: 0 8px 30px rgba(46, 50, 48, 0.06);
}

/* Minimal public home */
.page-home {
  min-width: 320px;
  background: #f7f9f7;
  background-image: radial-gradient(circle at 50% 35%, rgba(74, 124, 89, 0.1), transparent 42%);
}

.page-home main {
  min-height: 100vh;
  min-height: 100svh;
}

.minimal-home {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 32px 20px 18px;
}

.minimal-logo {
  position: absolute;
  top: 28px;
  left: 32px;
  display: block;
  width: min(194px, 48vw);
}

.minimal-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 210px));
  gap: 24px;
  margin: auto;
  padding: 92px 0 38px;
}

.download-option {
  display: flex;
  position: relative;
  aspect-ratio: 1;
  padding: 18px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(74, 124, 89, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(46, 50, 48, 0.09);
  color: var(--text);
  font-weight: 800;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.recommended-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
}

.download-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(46, 50, 48, 0.13);
}

.download-option:focus-visible {
  outline: 3px solid rgba(74, 124, 89, 0.3);
  outline-offset: 3px;
}

.mini-program-option img,
.store-icon {
  display: block;
  width: min(146px, 100%);
  height: auto;
}

.apple-icon {
  fill: #111;
}

.mini-program-option img {
  border-radius: 8px;
}

.minimal-footer {
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.minimal-footer p {
  margin: 0;
}

.minimal-footer a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-height: 720px) {
  .minimal-home {
    padding-top: 18px;
  }

  .download-options {
    grid-template-columns: repeat(3, minmax(0, 172px));
    padding-top: 72px;
  }
}

@media (max-width: 520px) {
  .minimal-home {
    padding-right: 14px;
    padding-left: 14px;
  }

  .minimal-logo {
    top: 20px;
    left: 20px;
    width: min(160px, 48vw);
  }

  .download-options {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 78px;
  }

  .microsoft-download {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }

  .download-option {
    padding: 12px;
    gap: 8px;
    border-radius: 16px;
    font-size: 13px;
  }

  .recommended-badge {
    top: 8px;
    right: 8px;
    padding: 2px 7px;
    font-size: 10px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-image:
    radial-gradient(at 0 0, rgba(74, 124, 89, 0.05), transparent 45%),
    radial-gradient(at 100% 100%, rgba(196, 166, 106, 0.05), transparent 45%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: none;
  margin: 0 auto;
  padding: 0 max(28px, calc((100% - 1390px) / 2));
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(196, 200, 188, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 155px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.site-nav a:hover,
.page-home .nav-home,
.page-review-home .nav-home,
.page-reviews .nav-reviews,
.page-review-detail .nav-reviews {
  color: var(--accent);
  font-weight: 800;
}

.page-home .nav-home::after,
.page-review-home .nav-home::after,
.page-reviews .nav-reviews::after,
.page-review-detail .nav-reviews::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  padding: 9px 25px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.account-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f0ede7;
  color: #3f443f;
  font-size: 21px;
}

.hero {
  max-width: 1120px;
  min-height: 560px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy {
  max-width: 640px;
  flex: 1 1 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.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;
}

/* Reviews list */
.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  width: min(1390px, calc(100% - 56px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.reviews-main {
  min-width: 0;
}

.reviews-titlebar,
.reviews-heading,
.list-tools,
.review-kicker,
.review-stats {
  display: flex;
  align-items: center;
}

.reviews-titlebar {
  justify-content: space-between;
  min-height: 54px;
  margin: 0 8px 24px;
}

.reviews-heading {
  gap: 14px;
}

.heading-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #8ecf9e;
  color: #2a6038;
  font-size: 27px;
  font-weight: 900;
}

.reviews-heading h1 {
  font-family: "Literata", "Songti SC", serif;
  font-size: clamp(29px, 2.35vw, 38px);
  font-weight: 900;
}

.list-tools {
  gap: 5px;
}

.list-tools button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 27px;
  cursor: pointer;
}

.list-tools button:hover {
  background: #fff;
}

.review-list {
  display: grid;
  gap: 26px;
}

.editorial-card {
  display: flex;
  gap: 28px;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.editorial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(74, 124, 89, 0.11);
}

.review-cover {
  flex: 0 0 220px;
  min-height: 212px;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e5df;
  box-shadow: 0 7px 15px rgba(46, 50, 48, 0.14);
}

.review-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.editorial-card:hover .review-cover img {
  transform: scale(1.05);
}

.review-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 4px 0;
}

.review-kicker {
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.review-tag {
  padding: 4px 16px;
  border-radius: 999px;
  color: #5e5548;
  background: #f0e8db;
  font-size: 12px;
  font-weight: 900;
}

.tag-rpg {
  color: #376846;
  background: #c8e8d0;
}

.tag-story {
  color: #705c30;
  background: #f8e0a8;
}

.review-copy h2 {
  margin: 0 0 13px;
  font-family: "Literata", "Songti SC", serif;
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.3;
}

.review-copy h2 a:hover {
  color: var(--accent);
}

.review-copy p {
  margin: 0;
  color: #505550;
  font-size: 16px;
  line-height: 1.8;
}

.review-stats {
  gap: 30px;
  margin-top: 17px;
  font-size: 14px;
  font-weight: 700;
}

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

.review-stats b {
  font-size: 21px;
}

.review-stats .score {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.load-more {
  width: 100%;
  margin-top: 38px;
  padding: 17px;
  border: 1px solid rgba(196, 200, 188, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(46, 50, 48, 0.04);
}

.load-more span {
  margin-left: 10px;
}

.reviews-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand-widget,
.side-card,
.newsletter-widget {
  border-radius: 30px;
}

.brand-widget {
  position: relative;
  overflow: hidden;
  padding: 38px;
  color: #fff;
  background: linear-gradient(140deg, #4a7c59, #285f37);
  box-shadow: 0 18px 30px rgba(42, 96, 56, 0.18);
}

.brand-widget::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(30px);
  content: "";
}

.widget-eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0.78;
}

.brand-widget h2 {
  margin: 0 0 14px;
  font-family: "Literata", "Songti SC", serif;
  font-size: 38px;
}

.brand-widget > p:not(.widget-eyebrow) {
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.brand-widget a,
.detail-app-card a {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  color: var(--accent);
  font-weight: 900;
}

.side-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 15px rgba(46, 50, 48, 0.03);
}

.side-card h3,
.newsletter-widget h3 {
  margin: 0 0 23px;
  font-size: 16px;
}

.side-card h3 span {
  margin-right: 8px;
  color: var(--accent);
  font-size: 22px;
}

.store-row {
  display: flex;
  min-height: 85px;
  align-items: center;
  gap: 17px;
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(196, 200, 188, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.store-row.disabled {
  opacity: 0.55;
  background: #f0eeea;
}

.store-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #090909;
  color: #fff;
  font-size: 27px;
}

.disabled .store-mark {
  background: #e1dfdb;
  color: #777;
}

.store-row small,
.store-row strong {
  display: block;
  line-height: 1.25;
}

.store-row small {
  color: var(--muted);
  font-size: 10px;
}

.store-row strong {
  margin-top: 3px;
  font-size: 16px;
}

.store-row > b {
  margin-left: auto;
  color: #b7bcaf;
  font-size: 22px;
}

.mini-widget {
  text-align: center;
}

.mini-widget h3 {
  text-align: left;
}

.mini-qr {
  width: 170px;
  height: 170px;
  margin: 0 auto 20px;
  padding: 14px;
  border: 1px solid rgba(196, 200, 188, 0.28);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 1px 5px rgba(46, 50, 48, 0.08);
}

.mini-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-widget p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.newsletter-widget {
  padding: 30px;
  color: #fff;
  background: #2e3230;
  box-shadow: 0 16px 30px rgba(46, 50, 48, 0.15);
}

.newsletter-widget h3 {
  margin-bottom: 6px;
  color: #8ecf9e;
}

.newsletter-widget p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.newsletter-widget form {
  display: flex;
  gap: 10px;
}

.newsletter-widget input {
  width: 100%;
  min-width: 0;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.newsletter-widget button {
  flex: 0 0 54px;
  width: 54px;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 25px;
}

/* Review detail */
.detail-hero {
  color: #fff;
  background:
    radial-gradient(circle at 85% 64%, rgba(142, 207, 158, 0.1), transparent 20%),
    linear-gradient(135deg, #2e3431, #252b28);
}

.detail-hero-inner {
  width: min(1390px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 86px;
}

.breadcrumbs {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.breadcrumbs strong {
  color: #fff;
}

.deep-review-badge {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 4px 13px;
  border: 1px solid rgba(142, 207, 158, 0.25);
  border-radius: 999px;
  background: rgba(74, 124, 89, 0.25);
  color: #c8e8d0;
  font-size: 11px;
  font-weight: 800;
}

.detail-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 90px;
  align-items: end;
}

.detail-title-row h1 {
  margin-bottom: 20px;
  font-family: "Literata", "Songti SC", serif;
  font-size: clamp(38px, 4.8vw, 67px);
  font-weight: 500;
  line-height: 1.14;
}

.detail-title-row > div:first-child > p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.85;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 34px;
}

.author-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.detail-meta span {
  display: flex;
  flex-direction: column;
}

.detail-meta small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.detail-meta b {
  font-size: 12px;
}

.detail-meta i {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.detail-score {
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 18px 38px rgba(0, 0, 0, 0.2);
}

.detail-score strong {
  font-family: "Literata", serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.detail-score small {
  margin-top: 8px;
  color: #c8e8d0;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.95fr);
  gap: 70px;
  width: min(1390px, calc(100% - 56px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.article-body {
  color: #363b37;
}

.article-body section + section {
  margin-top: 50px;
}

.article-body h2 {
  margin: 0 0 18px;
  font-family: "Literata", "Songti SC", serif;
  font-size: 31px;
  font-weight: 500;
}

.article-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
}

.article-body figure {
  position: relative;
  margin: 42px 0 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 44px rgba(46, 50, 48, 0.15);
}

.article-body figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-body figcaption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
}

.article-body blockquote {
  position: relative;
  margin: 52px 0;
  padding: 38px 40px;
  overflow: hidden;
  border-left: 4px solid var(--accent);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
}

.article-body blockquote::after {
  position: absolute;
  top: 5px;
  right: 22px;
  color: rgba(74, 124, 89, 0.12);
  content: "”";
  font-family: serif;
  font-size: 90px;
}

.article-body blockquote p {
  font-family: "Literata", "Songti SC", serif;
  font-size: 18px;
  font-style: italic;
}

.article-body cite {
  display: block;
  margin-top: 15px;
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.verdict-grid section {
  margin: 0 !important;
  padding: 30px;
  border: 1px solid rgba(196, 200, 188, 0.25);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.45);
}

.verdict-grid h3 {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 17px;
}

.verdict-grid section:last-child h3 {
  color: #4d514d;
}

.verdict-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verdict-grid li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
}

.verdict-grid li::before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ecf9e;
  box-shadow: 0 0 0 6px rgba(142, 207, 158, 0.16);
  content: "";
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.price-card,
.info-card,
.detail-app-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.price-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.price-head > span {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: #8ecf9e;
  color: #285f37;
  font-size: 24px;
}

.price-head small,
.price-head strong {
  display: block;
}

.price-head small {
  font-size: 11px;
}

.price-head strong {
  color: #397449;
  font-family: "Literata", serif;
  font-size: 22px;
}

.price-head b {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #c8e8d0;
  font-family: sans-serif;
  font-size: 8px;
}

.price-card dl,
.info-card dl {
  margin: 28px 0;
}

.price-card dl div,
.info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 15px;
  font-size: 11px;
}

.price-card dt,
.info-card dt {
  color: var(--muted);
}

.price-card dd,
.info-card dd {
  margin: 0;
  text-align: right;
}

.price-card > a,
.price-card > button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.price-card > a {
  margin-bottom: 11px;
  color: #fff;
  background: var(--accent);
}

.price-card > button {
  border: 1px solid rgba(196, 200, 188, 0.48);
  background: transparent;
  color: var(--accent);
}

.info-card h3 {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 200, 188, 0.25);
  font-size: 15px;
}

.info-card dl {
  margin-bottom: 0;
}

.detail-app-card {
  color: #fff;
  background: linear-gradient(145deg, #4a7c59, #2a6038);
  box-shadow: 0 18px 30px rgba(42, 96, 56, 0.2);
}

.detail-app-card small {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.detail-app-card h3 {
  margin: 17px 0 6px;
  font-family: "Literata", serif;
  font-size: 20px;
}

.detail-app-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.detail-app-card a {
  min-height: 52px;
  border-radius: 12px;
  font-size: 12px;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--surface);
}

.hero-panel {
  flex: 0 0 320px;
}

.qr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(28, 36, 48, 0.08);
}

.qr-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 8px;
}

.qr-card strong {
  display: block;
  font-size: 18px;
}

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

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.review-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.review-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

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

.error-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  min-height: 145px;
  padding: 45px max(28px, calc((100% - 1390px) / 2));
  align-items: flex-start;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 0;
  gap: 24px;
  background: rgba(245, 241, 234, 0.55);
}

.footer-links {
  display: flex;
  gap: 40px;
  color: #3d423e;
  font-size: 13px;
  font-weight: 800;
}

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

.footer-meta {
  text-align: right;
  font-size: 12px;
  opacity: 0.65;
}

.footer-meta p {
  margin: 8px 0 0;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 18px;
}

@media (max-width: 800px) {
  .reviews-shell,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .reviews-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-widget,
  .newsletter-widget {
    min-height: 300px;
  }

  .detail-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand img {
    width: 124px;
    height: 32px;
  }

  .site-nav {
    position: static;
    height: 100%;
    gap: 18px;
    transform: none;
  }

  .site-nav .nav-download,
  .account-icon {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .header-cta {
    padding: 7px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .hero-panel {
    width: 100%;
    flex: none;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    padding: 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

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

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

  .reviews-shell,
  .detail-hero-inner,
  .detail-layout {
    width: min(100% - 32px, 1390px);
  }

  .reviews-shell {
    padding-top: 26px;
  }

  .reviews-titlebar {
    margin-right: 0;
    margin-left: 0;
  }

  .heading-icon {
    width: 38px;
    height: 38px;
  }

  .reviews-heading h1 {
    font-size: 25px;
  }

  .list-tools button:first-child {
    display: none;
  }

  .editorial-card {
    flex-direction: column;
    gap: 20px;
    padding: 17px;
  }

  .review-cover {
    width: 100%;
    min-height: 220px;
    flex-basis: 220px;
  }

  .review-copy h2 {
    font-size: 22px;
  }

  .review-copy p {
    font-size: 14px;
  }

  .reviews-sidebar {
    display: flex;
  }

  .brand-widget,
  .newsletter-widget {
    min-height: 0;
  }

  .detail-hero-inner {
    padding: 56px 0 62px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
    overflow: hidden;
    white-space: nowrap;
  }

  .detail-title-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .detail-title-row h1 {
    font-size: 38px;
  }

  .detail-score {
    width: 118px;
    height: 118px;
  }

  .detail-score strong {
    font-size: 44px;
  }

  .detail-layout {
    gap: 54px;
    padding: 48px 0 78px;
  }

  .article-body h2 {
    font-size: 26px;
  }

  .article-body p {
    font-size: 15px;
  }

  .article-body blockquote {
    padding: 30px 24px;
  }

  .verdict-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }
}
