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

:root {
  --navy: #0D1B2A;
  --navy-mid: #152336;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --warm-white: #F7F5F0;
  --grey-light: #E8E6E1;
  --grey-mid: #B0A99A;
  --slate: #4A5568;
  --text-dark: #1A2535;
  --text-body: #374151;
  --green-ok: #2D6A4F;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 16px;
}

a {
  color: inherit;
}

header {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.3px;
}

.logo-name span {
  color: var(--gold);
}

.logo-sub {
  font-size: 9px;
  color: var(--grey-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: rgba(247, 245, 240, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold);
}

.nav-disclaimer {
  font-size: 10px;
  color: var(--grey-mid);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  letter-spacing: 0.3px;
}

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 13px;
  color: var(--slate);
}

.breadcrumb a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb strong {
  color: var(--text-dark);
  font-weight: 600;
}

.detail-hero {
  background: var(--navy);
  padding: 48px 24px 64px;
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.detail-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}

.detail-logo-wrap {
  background: rgba(247, 245, 240, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.detail-logo-wrap img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.detail-lead {
  color: rgba(247, 245, 240, 0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-chip {
  background: rgba(247, 245, 240, 0.07);
  border: 1px solid rgba(247, 245, 240, 0.15);
  color: rgba(247, 245, 240, 0.8);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
}

.detail-chip.score {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline {
  display: inline-block;
  padding: 11px 22px;
  border: 1.5px solid rgba(247, 245, 240, 0.35);
  color: var(--warm-white);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(247, 245, 240, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary {
  display: inline-block;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
}

section {
  padding: 64px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-intro {
  color: var(--slate);
  font-size: 16px;
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.section-alt {
  background: #fff;
}

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

.prose {
  max-width: 760px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

.prose p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 24px;
}

.section-alt .feature-card {
  background: #fff;
  border-color: var(--grey-light);
}

.feature-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: #fff;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
}

.spec-table th {
  background: var(--navy);
  color: var(--warm-white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 38%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.two-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.two-col p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 14px;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list .icon-ok {
  color: var(--green-ok);
  font-weight: 700;
  flex-shrink: 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--grey-light);
}

.pros-box {
  background: rgba(45, 106, 79, 0.06);
  border-color: rgba(45, 106, 79, 0.2);
}

.cons-box {
  background: rgba(176, 58, 46, 0.04);
  border-color: rgba(176, 58, 46, 0.15);
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.pros-box h3 {
  color: var(--green-ok);
}

.cons-box h3 {
  color: #B03A2E;
}

.pros-cons-list {
  list-style: none;
}

.pros-cons-list li {
  font-size: 14px;
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-body);
  line-height: 1.55;
}

.pros-cons-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pros-box .pros-cons-list li::before {
  content: '+';
  color: var(--green-ok);
}

.cons-box .pros-cons-list li::before {
  content: '−';
  color: #B03A2E;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--grey-light);
  padding: 20px 0;
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

.related-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-platforms a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--grey-light);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
}

.related-platforms a:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.related-platforms a.is-current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--warm-white);
}

.cta-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
}

.cta-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.cta-bar p {
  color: rgba(247, 245, 240, 0.65);
  font-size: 14px;
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.65;
}

.disclaimer-box {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

.disclaimer-box strong {
  color: var(--text-dark);
}

footer {
  background: var(--navy);
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 13px;
  color: rgba(247, 245, 240, 0.55);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(247, 245, 240, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  margin-bottom: 24px;
}

.footer-rg {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 12.5px;
  color: rgba(247, 245, 240, 0.6);
  line-height: 1.7;
}

.footer-rg strong {
  color: rgba(247, 245, 240, 0.85);
}

.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #B03A2E;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-legal {
  font-size: 12px;
  color: rgba(247, 245, 240, 0.4);
  line-height: 1.8;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .detail-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .detail-meta,
  .detail-actions {
    justify-content: center;
  }

  .two-col,
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-bar {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
