/* SimonTech Reviews - Digital Projectors Styles
   Lightweight, mobile-first, no external dependencies. edit */

:root {
  --bg: #081321;
  --bg-soft: #0d1d31;
  --surface: #10243a;
  --surface-hover: #16314d;
  --text: #f3f6f8;
  --muted: #aebdca;
  --accent: #e7b85c;
  --accent-2: #82b9d8;
  --link: #9bd0ed;
  --border: #1e3a52;
  --success: #34d399;
  --radius: 12px;
  --shadow: 0 14px 34px rgba(0,0,0,.22);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
a { color: var(--link); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Skip link for a11y */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--accent); color: #000; padding: 8px 12px; z-index: 999;
  font-weight: bold; border-radius: 4px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,19,33,.96);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  font-weight: 800; letter-spacing: .3px; color: var(--text);
  font-size: 1.15rem;
}
.brand span { color: var(--accent); }
.nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.nav a { color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); text-decoration: none; }

/* Hero */
.hero {
  padding: 92px 0 78px;
  background:
    linear-gradient(90deg, rgba(8,19,33,.97), rgba(8,19,33,.72)),
    radial-gradient(900px 400px at 90% 0%, rgba(130,185,216,.18), transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 32px; margin: 0 auto 14px; max-width: 840px;
}
.hero p.lead { color: var(--muted); font-size: 1.15rem; max-width: 760px; margin: 0 auto; }
.hero .cta-row { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 10px;
  font-weight: 700; letter-spacing: .2px; border: 1px solid transparent;
  transition: transform .08s ease, background .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #17202a; }
.btn-primary:hover { background: #f1ca75; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
section { padding: 44px 0; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 14px; }
h3 { margin: 0 0 8px; }
.section-intro { color: var(--muted); max-width: 780px; }

/* Cards grid */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card:hover { background: var(--surface-hover); }
.card h3 { color: var(--accent); }
.card p { color: var(--muted); margin: 6px 0 0; }
.icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 10px;
}

/* Product / feature panel */
.panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .panel.product { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
.product-img {
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #1b2452, #0e1330);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: block; width: 100%; height: auto;
  object-fit: cover;
  color: var(--muted);
}

/* Benefit inline images */
.benefit-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 10px 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-soft);
}
.badge {
  display: inline-block; background: rgba(52, 211, 153, .15);
  color: var(--success); border: 1px solid rgba(52,211,153,.35);
  padding: 4px 10px; border-radius: 999px; font-size: .8rem; font-weight: 700;
  margin-bottom: 10px;
}
ul.checks { list-style: none; padding: 0; margin: 10px 0; }
ul.checks li { padding-left: 26px; position: relative; margin-bottom: 6px; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #0b1020; background: var(--accent);
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .8rem;
}

/* Table */
.table-wrap { overflow-x: auto; margin-top: 16px; }
table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--bg-soft); color: var(--accent); font-size: .95rem; }
tr:last-child td { border-bottom: none; }

/* FAQ */
details.faq {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px;
}
details.faq[open] { border-color: var(--accent); }
details.faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "＋"; float: right; color: var(--accent); }
details.faq[open] summary::after { content: "－"; }
details.faq p { color: var(--muted); margin: 10px 0 0; }

/* Review list */
.review-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.review-list li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
}
.review-list li > div.review-body { min-width: 0; }
.review-list h3 { color: var(--accent); font-size: 1.05rem; margin-bottom: 4px; }
.review-list .meta { color: var(--muted); font-size: .9rem; }
.review-list .verdict { margin-top: 6px; color: var(--text); }

/* Score "pop" badge */
.score {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 92px; padding: 10px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1300; border-radius: 14px;
  box-shadow: 0 6px 18px rgba(255,106,61,.25);
  text-align: center; line-height: 1;
}
.score .num {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.score .num small { font-size: 1rem; font-weight: 700; opacity: .75; }
.score .label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; margin-top: 4px; opacity: .85;
}
@media (max-width: 520px) {
  .review-list li { grid-template-columns: 1fr; }
  .score { justify-self: start; flex-direction: row; gap: 8px; padding: 6px 12px; min-width: 0; }
  .score .num { font-size: 1.6rem; }
  .score .label { margin-top: 0; }
}

/* Aggregate score hero */
.score-hero {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-top: 18px;
  box-shadow: var(--shadow);
}
.score-hero .big-score {
  font-size: 4.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -2px; font-variant-numeric: tabular-nums;
}
.score-hero .big-score small { font-size: 1.6rem; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.score-hero h3 { color: var(--accent); margin: 0 0 4px; }
.score-hero p { margin: 0; color: var(--muted); }
@media (max-width: 520px) {
  .score-hero { grid-template-columns: 1fr; text-align: center; }
  .score-hero .big-score { font-size: 3.2rem; }
}

/* Callout */
.callout {
  border-left: 4px solid var(--accent);
  background: rgba(255,204,51,.06);
  padding: 14px 16px; border-radius: 8px; margin: 18px 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0; color: var(--muted);
  margin-top: 40px; font-size: .92rem;
}
.site-footer a { color: var(--link); }
.disclosure {
  background: rgba(124,196,255,.07);
  border: 1px dashed var(--border);
  padding: 12px 14px; border-radius: 10px;
  color: var(--muted); font-size: .88rem; margin-top: 14px;
}

/* Utility */
.text-muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-0 { margin-bottom: 0; }
.small { font-size: .9rem; }
