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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f9fb;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.review-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.review-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.review-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
}

.review-logo:hover {
  text-decoration: none;
}

.review-logo__accent {
  color: #2563eb;
}

.review-nav {
  display: flex;
  gap: 1.5rem;
}

.review-nav a {
  font-weight: 500;
  color: #5c6370;
  text-decoration: none;
}

.review-nav a:hover {
  color: #2563eb;
  text-decoration: none;
}

.review-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.9rem;
  color: #5c6370;
}

.review-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.review-footer p {
  margin: 0;
  width: min(100%, 38rem);
  line-height: 1.6;
  text-align: center;
}

.review-footer__copyright-note {
  display: block;
  margin-top: 0.25rem;
}

.review-footer__links a {
  font-weight: 500;
  color: #5c6370;
  text-decoration: none;
}

.review-footer__links a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.review-footer__disclosure {
  font-size: 0.85rem;
}

.review-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.review-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.review-cta:hover {
  background: #1d4ed8;
  text-decoration: none;
}

.review-disclosure {
  font-size: 0.85rem;
  color: #5c6370;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
