/* scushionvivo — warm editorial review platform */
:root {
  --bg: #FFF8F3;
  --surface: #FFFFFF;
  --ink: #2D2420;
  --muted: #6B5E58;
  --accent: #E07A5F;
  --accent-dark: #C45A40;
  --accent2: #81B29A;
  --accent3: #F2CC8F;
  --dark: #3D405B;
  --border: #F0E6DE;
  --star: #F2CC8F;
  --shadow: 0 4px 24px rgba(45,36,32,.06);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',system-ui,sans-serif;background:var(--bg);color:var(--ink);line-height:1.65;font-size:16px}
.wrap{max-width:1040px;margin:0 auto;padding:0 24px}

header{background:var(--surface);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:20}
.hi{display:flex;justify-content:space-between;align-items:center;padding:18px 0}
.brand{font-family:'Source Serif 4',Georgia,serif;font-size:1.45rem;font-weight:700;color:var(--ink);text-decoration:none;letter-spacing:-.02em}
.brand span{color:var(--accent)}
.nav{display:flex;gap:22px;align-items:center;list-style:none;flex-wrap:wrap}
.nav a{color:var(--muted);text-decoration:none;font-size:.92rem;font-weight:500;transition:color .2s}
.nav a:hover{color:var(--accent)}
.lang-switch{border:1px solid var(--border);padding:5px 11px;border-radius:20px;font-family:'DM Mono',monospace;font-size:.78rem;color:var(--muted)}
.lang-switch:hover{border-color:var(--accent);color:var(--accent)}

.main{padding:42px 0 64px}
.hero{text-align:center;padding:32px 0 46px}
.hero h1{font-family:'Source Serif 4',Georgia,serif;font-size:2.1rem;font-weight:700;line-height:1.2;margin-bottom:14px;color:var(--ink)}
.hero-sub{color:var(--muted);font-size:1.05rem;max-width:640px;margin:0 auto}

.review-list{display:grid;grid-template-columns:1fr;gap:22px}
.review-card{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:24px;box-shadow:var(--shadow);transition:transform .15s,border-color .15s}
.review-card:hover{transform:translateY(-2px);border-color:#E7DCD3}
.card-top{display:flex;gap:16px;align-items:center;flex-wrap:wrap;margin-bottom:12px}
.entity-avatar{width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,var(--accent),var(--accent3));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;flex-shrink:0}
.entity-avatar.large{width:72px;height:72px;border-radius:16px;font-size:1.2rem}
.entity-meta{flex:1;min-width:180px}
.entity-meta h2{font-family:'Source Serif 4',Georgia,serif;font-size:1.15rem;font-weight:600}
.entity-meta h2 a{color:var(--ink);text-decoration:none}
.entity-meta h2 a:hover{color:var(--accent)}
.category{font-size:.82rem;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.entity-score{text-align:right;min-width:110px}
.score-big{font-family:'Source Serif 4',Georgia,serif;font-size:2rem;font-weight:700;color:var(--accent);line-height:1}
.stars{color:var(--star);font-size:1.05rem;letter-spacing:1px}
.count{font-size:.8rem;color:var(--muted)}
.price{font-family:'DM Mono',monospace;font-size:.78rem;color:var(--muted);margin-top:4px}
.card-summary{color:var(--muted);font-size:.95rem;margin-bottom:16px;line-height:1.7}
.card-bottom{display:flex;justify-content:space-between;align-items:center}
.read-more{color:var(--accent);font-weight:600;text-decoration:none}
.read-more:hover{color:var(--accent-dark)}

.review-detail{background:var(--surface);border:1px solid var(--border);border-radius:22px;padding:34px;box-shadow:var(--shadow)}
.detail-hero{display:flex;gap:28px;align-items:center;flex-wrap:wrap;margin-bottom:28px;padding-bottom:28px;border-bottom:1px solid var(--border)}
.detail-identity{flex:1;display:flex;gap:20px;align-items:center;min-width:260px}
.detail-identity h1{font-family:'Source Serif 4',Georgia,serif;font-size:1.9rem;font-weight:700;margin-top:4px}
.detail-score{text-align:center;min-width:140px}
.detail-score .score-big{font-size:2.8rem}
.detail-score .stars{font-size:1.2rem}

.money-cta{background:linear-gradient(135deg,#FDF6F0,#F7EDE6);border:1px solid #E9DCD2;border-radius:16px;padding:22px 26px;margin-bottom:28px;display:flex;gap:20px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.money-cta p{flex:1;color:var(--muted);font-size:.95rem;min-width:260px}
.cta-button{display:inline-block;background:var(--accent);color:#fff;padding:13px 24px;border-radius:30px;font-weight:600;text-decoration:none;transition:background .2s}
.cta-button:hover{background:var(--accent-dark)}

.detail-section{margin-bottom:32px}
.detail-section h2{font-family:'Source Serif 4',Georgia,serif;font-size:1.35rem;font-weight:600;margin-bottom:14px;color:var(--dark)}
.detail-section h3{font-size:1.05rem;font-weight:600;margin-bottom:10px;color:var(--dark)}
.detail-section p{color:var(--muted);margin-bottom:14px;line-height:1.8}
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.pros ul,.cons ul{padding-left:20px;color:var(--muted)}
.pros li,.cons li{margin-bottom:8px;line-height:1.6}
.pros h3{color:var(--accent2)}
.cons h3{color:var(--accent)}

.user-review{border-bottom:1px solid var(--border);padding:22px 0}
.user-review:last-child{border-bottom:none}
.reviewer-head{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:10px}
.avatar{width:38px;height:38px;border-radius:50%;background:var(--dark);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}
.review-date{font-size:.78rem;color:var(--muted);display:block}
.review-badge{margin-left:auto;color:var(--star);font-size:.9rem;font-weight:600}
.user-review h3{font-family:'Source Serif 4',Georgia,serif;font-size:1.05rem;margin-bottom:6px;color:var(--ink)}
.user-review p{color:var(--muted);line-height:1.75}

.faq{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.faq h2{grid-column:1/-1}
.faq-item{background:#FDF8F4;border:1px solid var(--border);border-radius:14px;padding:18px}
.faq-item h3{font-family:'Source Serif 4',Georgia,serif;font-size:1rem;margin-bottom:8px;color:var(--dark)}
.faq-item p{font-size:.93rem;color:var(--muted);line-height:1.7}

.static-page{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:34px;box-shadow:var(--shadow)}
.static-page h1{font-family:'Source Serif 4',Georgia,serif;font-size:1.7rem;margin-bottom:16px}
.static-page h2{font-family:'Source Serif 4',Georgia,serif;font-size:1.25rem;margin:28px 0 12px;color:var(--dark)}
.static-page p{color:var(--muted);margin-bottom:14px;line-height:1.8}
.static-page ul{margin:14px 0 14px 22px;color:var(--muted)}
.static-page li{margin-bottom:8px;line-height:1.6}

footer{background:var(--surface);border-top:1px solid var(--border);padding:34px 0;text-align:center}
.footer-copy{font-size:.85rem;color:var(--muted);margin-bottom:6px}
.footer-note{font-size:.78rem;color:#9D9089}

@media(max-width:760px){
  .hi{flex-direction:column;gap:14px;align-items:flex-start}
  .nav{gap:14px}
  .pros-cons{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
  .detail-hero{flex-direction:column;align-items:flex-start}
  .entity-score{text-align:left}
  .hero h1{font-size:1.7rem}
}

.editorial-deep,.method-block,.app-review-deep,.finance-editorial,.invest-clarity,.digital-deep,.editorial-longform,.overview-editorial{margin-top:28px;padding-top:12px}
.editorial-deep h2,.method-block h2,.app-review-deep h2,.finance-editorial h2,.invest-clarity h2,.digital-deep h2,.editorial-longform h2,.overview-editorial h2{font-weight:700;margin:24px 0 10px}
.editorial-deep p,.method-block p,.app-review-deep p,.finance-editorial p,.invest-clarity p,.digital-deep p,.editorial-longform p,.overview-editorial p{margin-bottom:14px;line-height:1.65}
.editorial-longform h2{font-size:1.15rem}
