/* ===== análise page ===== */
.crumbs { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); padding: 22px 0 0; position: relative; z-index: 2; }
.crumbs a:hover { color: var(--accent); }

.rev-hero { position: relative; padding: 40px 0 48px; overflow: hidden; }
.rev-hero::before { content: ""; position: absolute; inset: 0; background: var(--glow); }
.rev-hero .wrap { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .rev-hero .wrap { grid-template-columns: 1fr; } }
.op-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.op-head .op-logo { width: 72px; height: 72px; border-radius: 20px; font-size: 28px; margin: 0; background: var(--grad-copper); display: grid; place-items: center; color: #fff; font-weight: 900; font-variation-settings: "wdth" 125; }
.rev-hero h1 { font-size: clamp(32px, 4.6vw, 54px); }
.rev-hero .sub { color: var(--text-2); font-size: 16.5px; max-width: 58ch; margin: 14px 0 24px; }
.verified { font-family: var(--font-mono); font-size: 12px; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.verified::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-strong); animation: pulse 1.6s infinite; }

/* score panel */
.score-panel {
  background: var(--card); border: 1.5px solid color-mix(in srgb, var(--copper-500) 45%, var(--line));
  border-radius: 24px; padding: 30px; box-shadow: var(--shadow); position: relative;
}
.score-panel .big {
  font-variation-settings: "wdth" 125; font-weight: 900; font-size: 74px; line-height: 1;
  background: var(--grad-copper); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.score-panel .of { font-family: var(--font-mono); color: var(--text-3); font-size: 14px; }
.score-panel .stars { font-size: 20px; letter-spacing: 3px; margin: 8px 0 20px; display: block; }
.sbar { margin-bottom: 13px; }
.sbar .lbl { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 5px; }
.sbar .lbl b { font-family: var(--font-mono); color: var(--accent); font-weight: 700; }
.sbar .track { height: 7px; border-radius: 99px; background: var(--chip-bg); overflow: hidden; }
.sbar .fill { height: 100%; border-radius: 99px; background: var(--grad-copper); transform-origin: left; animation: grow 1s ease both; }
@keyframes grow { from { transform: scaleX(0); } }
.score-panel .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* layout: content + sticky aside */
.rev-body { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; padding: 56px 0; position: relative; z-index: 2; }
@media (max-width: 880px) { .rev-body { grid-template-columns: 1fr; } }
.rev-body aside { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 16px; }

/* ficha técnica */
.ficha { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.ficha h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; padding: 16px 20px; border-bottom: 1px solid var(--line); color: var(--text-2); }
.ficha dl { padding: 8px 20px 14px; }
.ficha .fr { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.ficha .fr:last-child { border-bottom: 0; }
.ficha dt { color: var(--text-3); flex: none; }
.ficha dd { text-align: right; font-weight: 600; }
.ficha dd.mono { font-family: var(--font-mono); font-weight: 500; font-size: 12px; }

/* article */
article h2 { font-size: clamp(22px, 3vw, 30px); margin: 44px 0 16px; }
article h2:first-child { margin-top: 0; }
article p { color: var(--text-2); margin-bottom: 14px; max-width: 70ch; }
article p strong { color: var(--text); }

/* promo list */
.plist { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 6px; }
.pitem {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px;
  transition: border-color .2s, transform .18s;
}
.pitem:hover { border-color: var(--accent); transform: translateX(4px); }
.pitem .ico {
  width: 38px; height: 38px; border-radius: 10px; background: var(--chip-bg); color: var(--chip-text);
  display: grid; place-items: center; font-size: 17px; flex: none;
}
.pitem b { font-size: 14.5px; display: block; }
.pitem small { color: var(--text-3); font-size: 12.5px; }
.pitem .when { font-family: var(--font-mono); font-size: 11px; color: var(--accent); white-space: nowrap; }

/* pros / cons */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
@media (max-width: 680px) { .pc { grid-template-columns: 1fr; } }
.pc > div { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.pc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.pc .pros h4 { color: var(--accent); }
.pc .cons h4 { color: var(--text-3); }
.pc ul { list-style: none; }
.pc li { font-size: 14px; color: var(--text-2); padding: 6px 0 6px 24px; position: relative; }
.pc .pros li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 800; font-family: var(--font-mono); }
.pc .cons li::before { content: "–"; position: absolute; left: 0; color: var(--text-3); font-weight: 800; font-family: var(--font-mono); }

/* faq */
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 0 20px; margin-bottom: 10px;
}
details summary {
  cursor: pointer; font-weight: 700; font-size: 15px; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
details summary::after { content: "+"; font-family: var(--font-mono); color: var(--accent); font-size: 18px; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding-bottom: 16px; color: var(--text-2); font-size: 14.5px; }

/* verdict */
.verdict {
  border: 1.5px solid color-mix(in srgb, var(--copper-500) 45%, var(--line));
  border-radius: 20px; padding: 26px 28px; margin-top: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--copper-500) 7%, var(--card)), var(--card));
}
.verdict .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.verdict p { color: var(--text); font-size: 16px; margin: 0; }

.updated-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); margin-top: 30px; }
