/* ===== Playio New IT — Dark Theme =====
   Brand DNA: changelog tracker, night-mode editorial
   Palette: deep blue-black bg, mint emerald accent, warm coral CTA, gold for amounts
*/

:root{
  --bg:        #0e1620;
  --surface:   #182233;
  --surface-2: #1f2a3d;
  --line:      #2a3851;
  --text:      #e8edf5;
  --text-mute: #9ba8be;
  --emerald:   #38d49a;
  --emerald-d: #2bb480;
  --coral:     #ff8856;
  --coral-d:   #e56a3a;
  --gold:      #f0c14b;
  --shadow:    0 8px 28px rgba(0, 0, 0, 0.45);
  --shadow-l:  0 2px 10px rgba(0, 0, 0, 0.3);
  --radius:    14px;
  --radius-l:  20px;
  --max:       1180px;
  --font:      "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(at 8% 12%, rgba(14,93,58,0.05) 0, transparent 35%),
    radial-gradient(at 92% 88%, rgba(247,109,60,0.04) 0, transparent 40%);
  background-attachment: fixed;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--emerald); text-decoration: none; transition: color .2s; }
a:hover{ color: var(--coral); }

.container{
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4{
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 900; letter-spacing: -0.02em; }
h2{ font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin-top: 2em; }
h3{ font-size: 1.2rem; margin-top: 1.5em; }
h4{ font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); }
p{ margin: 0 0 1em; }
ul, ol{ padding-left: 1.4em; margin: 0 0 1em; }
li{ margin-bottom: .4em; }
strong{ font-weight: 700; }
em{ font-style: italic; }
.accent{ color: var(--emerald); }
.accent-coral{ color: var(--coral); }

/* ============= Buttons ============= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 0;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(247,109,60,.32);
}
.btn--primary:hover{ background: var(--coral-d); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(247,109,60,.4); }
.btn--secondary{
  background: var(--emerald);
  color: #fff;
}
.btn--secondary:hover{ background: var(--emerald-d); color: #fff; transform: translateY(-2px); }
.btn--ghost{
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn--ghost:hover{ background: var(--emerald); color: #fff; }
.btn--lg{ padding: 16px 36px; font-size: 1.05rem; }
.btn--xl{ padding: 19px 44px; font-size: 1.12rem; }
.btn--full{ display: flex; width: 100%; }

/* ============= Header ============= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 245, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.header.is-scrolled{
  box-shadow: var(--shadow-l);
  border-bottom-color: var(--line);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 16px;
}
.logo{
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--emerald);
}
.logo__leaf{
  display: inline-block;
  width: 22px; height: 22px;
  margin-right: 4px;
  vertical-align: -3px;
}
.logo__dot{ color: var(--coral); font-weight: 800; }

.menu{
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.menu a{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  color: var(--text);
}
.menu a:hover{ background: var(--surface-2); color: var(--emerald); }
.menu a.current{
  background: var(--emerald);
  color: #fff;
}

.lang-switcher{
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--line);
}
.lang-switcher a{
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mute);
}
.lang-switcher a.current{
  background: var(--coral);
  color: #fff;
}

/* ============= Breadcrumbs ============= */
.breadcrumbs{
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 14px 0;
  margin: 0;
  font-size: .88rem;
  color: var(--text-mute);
}
.breadcrumbs__list li:not(:first-child)::before{
  content: "›";
  margin-right: 8px;
  color: var(--text-mute);
}

/* ============= Hero ============= */
.hero{
  padding-block: 60px 80px;
  background:
    radial-gradient(at 78% 30%, rgba(14,93,58,0.07) 0, transparent 50%),
    linear-gradient(180deg, rgba(247,109,60,0.03) 0, transparent 60%);
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero__title{
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.hero__title span{ color: var(--coral); }
.hero__sub{
  font-size: 1.12rem;
  color: var(--text-mute);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__bullets li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: .96rem;
}
.hero__bullets svg{ color: var(--emerald); flex-shrink: 0; }

.hero__card{
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero__card::before{
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(247,109,60,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__card-tag{
  display: inline-block;
  background: rgba(14,93,58,0.1);
  color: var(--emerald);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.hero__card-amount{
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.hero__card-extra{
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 26px;
}
.hero__card-list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .92rem;
  color: var(--text-mute);
}
.hero__card-list li::before{
  content: "•";
  color: var(--coral);
  font-weight: 700;
  margin-right: 8px;
}
.hero__card-note{
  margin: 14px 0 0;
  font-size: .8rem;
  color: var(--text-mute);
  text-align: center;
}

/* ============= Sections ============= */
.section{ padding-block: 70px; }
.section-title{
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-sub{
  text-align: center;
  color: var(--text-mute);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* ============= Feature cards ============= */
.features__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-l);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(14,93,58,0.08);
  color: var(--emerald);
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature h3{
  font-size: 1.15rem;
  margin: 0 0 .5em;
}
.feature p{
  font-size: .92rem;
  color: var(--text-mute);
  margin: 0;
}

/* ============= Bonus highlight cards ============= */
.bonus-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.bonus-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-l);
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.bonus-card--hot{
  border: 2px solid var(--coral);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.bonus-card__tag{
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--coral);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bonus-card h3{
  font-size: 1.15rem;
  margin: 0 0 16px;
  color: var(--emerald);
}
.bonus-card__amount{
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.bonus-card__extra{
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.bonus-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-card ul li{
  font-size: .9rem;
  color: var(--text-mute);
  padding-left: 18px;
  position: relative;
  margin: 0;
}
.bonus-card ul li::before{
  content: "›";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
}

/* ============= Tables ============= */
table{
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  font-size: .95rem;
}
thead{ background: var(--emerald); color: #fff; }
th, td{
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th{
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
tbody tr:hover{ background: var(--surface-2); }
tbody tr:last-child td{ border-bottom: 0; }

.table-wrap{ overflow-x: auto; }

/* ============= Article layout ============= */
.article{ padding-block: 50px 70px; }
.article__layout{
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: start;
}
.article__content{
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow-l);
  border: 1px solid var(--line);
}
.article__content h2{ scroll-margin-top: 80px; }
.article__content blockquote{
  margin: 30px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--coral);
  background: var(--surface-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

.article__sidebar{ position: sticky; top: 90px; }
.toc{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-l);
}
.toc h4{
  font-size: .78rem;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.toc ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc li{ margin: 0; }
.toc a{
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text);
}
.toc a:hover{ background: var(--surface-2); color: var(--coral); }

.sidebar-cta{
  background: linear-gradient(160deg, var(--emerald) 0%, var(--emerald-d) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.sidebar-cta h4{
  color: rgba(255,255,255,.7);
  margin: 0 0 6px;
  font-size: .75rem;
}
.sidebar-cta__amount{
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.sidebar-cta p{
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.sidebar-cta .btn{
  background: var(--coral);
  color: #fff;
  width: 100%;
}
.sidebar-cta .btn:hover{ background: var(--coral-d); }

/* ============= Rating box ============= */
.rating-box{
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, #1d2c40 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 30px 0;
  box-shadow: var(--shadow-l);
}
.rating-box__score{
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rating-box__score span{
  font-size: 1rem;
  color: var(--text-mute);
  font-weight: 600;
  letter-spacing: 0;
}
.rating-box__details h3{ margin: 0 0 6px; font-size: 1.05rem; }
.rating-box__details p{ margin: 0; font-size: .95rem; color: var(--text-mute); }
.rating-stars{
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 6px 0 !important;
}

/* ============= Pros / Cons ============= */
.proscons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}
.proscons__box{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-l);
}
.proscons__box--pro{
  border-top: 4px solid var(--emerald);
}
.proscons__box--con{
  border-top: 4px solid var(--coral);
}
.proscons__box h3{
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.proscons__box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.proscons__box li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text);
}
.proscons__box--pro li::before{
  content: "+";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  text-align: center;
  line-height: 20px;
  font-size: .8rem;
}
.proscons__box--con li::before{
  content: "−";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  text-align: center;
  line-height: 20px;
  font-size: .9rem;
}

/* ============= Providers strip ============= */
.providers{ padding-block: 50px; background: var(--surface-2); }
.providers__strip{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.provider-pill{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  box-shadow: var(--shadow-l);
}

/* ============= Steps ============= */
.steps__list{
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 0 40px;
}
.step{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-l);
}
.step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h3{ margin: 0 0 8px; font-size: 1.05rem; }
.step p{ margin: 0; font-size: .9rem; color: var(--text-mute); }
.steps__cta{ text-align: center; }

/* ============= FAQ ============= */
.faq__list{ max-width: 820px; margin: 0 auto; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: var(--shadow-l);
  overflow: hidden;
}
.faq-item summary{
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform .2s;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-mute);
  font-size: .95rem;
}

/* ============= CTA final ============= */
.cta-final{
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-d) 100%);
  color: #fff;
  padding-block: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before{
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(247,109,60,.2) 0%, transparent 60%);
}
.cta-final h2{
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.cta-final p{
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 26px;
}
.cta-final__note{
  margin-top: 18px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ============= Page hero (inner pages) ============= */
.page-hero{
  padding-block: 60px 40px;
  background:
    radial-gradient(at 20% 0%, rgba(14,93,58,0.08) 0, transparent 50%);
}
.page-hero h1{ margin: 0 0 14px; }
.page-hero p{
  font-size: 1.1rem;
  color: var(--text-mute);
  max-width: 720px;
  margin: 0;
}

/* ============= Footer ============= */
.footer{
  background: #102521;
  color: #b6c5be;
  padding-block: 50px 0;
}
.footer a{ color: #d9e1dd; }
.footer a:hover{ color: var(--coral); }
.footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__col h4{
  color: #fff;
  font-size: .82rem;
  margin: 0 0 16px;
  letter-spacing: .08em;
}
.footer__col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col li{ margin: 0; }
.footer__col li a{ font-size: .92rem; }
.footer .logo{ color: #fff; }
.footer .logo__dot{ color: var(--coral); }
.footer__about{
  font-size: .9rem;
  line-height: 1.6;
  color: #a3b5ac;
  margin-top: 14px;
  max-width: 320px;
}
.footer__bottom{
  margin-top: 50px;
  padding-block: 22px;
  border-top: 1px solid #1f3a32;
  font-size: .82rem;
  color: #8a9b93;
}
.footer__bottom .container{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer__age{
  background: var(--coral);
  color: #fff;
  padding: 4px 11px;
  border-radius: 6px;
  font-weight: 800;
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom p{ margin: 0; line-height: 1.55; }

/* ============= Author byline (inline, end of content) ============= */
.article-meta{
  margin: 32px 0 12px;
  padding: 11px 16px;
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--text-mute);
  font-size: .87rem;
  font-style: italic;
}
.author-byline{
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0 0;
  padding: 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.author-byline__avatar{
  width: 76px; height: 76px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(12, 60, 38, 0.12);
  display: block;
}
.author-byline__label{
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mute);
  font-weight: 700;
  margin: 0 0 4px;
}
.author-byline__name{
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text);
}
.author-byline__name a{ color: var(--text); }
.author-byline__name a:hover{ color: var(--coral); }
.author-byline__bio{
  font-size: .92rem;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.55;
}

/* ============= Author profile page ============= */
.author-profile{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 20px;
}
.author-profile__avatar{
  width: 220px; height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--surface);
  box-shadow: var(--shadow);
}
.author-profile__role{
  display: inline-block;
  padding: 7px 16px;
  background: rgba(14,93,58,0.1);
  color: var(--emerald);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.author-profile h1{ margin-bottom: 12px; }
.author-profile__lead{
  font-size: 1.12rem;
  color: var(--text-mute);
  margin-bottom: 0;
  line-height: 1.6;
}
.author-stats{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin: 36px 0;
}
.author-stat{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-l);
}
.author-stat__num{
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.author-stat__label{
  font-size: .82rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}

/* ============= Prose page (legal/info) ============= */
.prose-page{
  padding-block: 30px 60px;
}
.prose-page .container{ max-width: 880px; }
.prose-page h2{ margin-top: 1.8em; font-size: 1.4rem; }
.prose-page h3{ margin-top: 1.4em; font-size: 1.1rem; }
.prose-page p, .prose-page li{ color: var(--text); }
.prose-page a{ text-decoration: underline; }

/* ============= Reveal animation ============= */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ============= Responsive ============= */
@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; gap: 40px; }
  .article__layout{ grid-template-columns: 1fr; }
  .article__sidebar{ position: static; }
  .article__content{ padding: 30px 24px; }
  .proscons{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; gap: 30px; }
  .author-profile{ grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .author-profile__avatar{ margin: 0 auto; width: 180px; height: 180px; }
}

@media (max-width: 480px){
  /* MANDATORY: header wraps cleanly on mobile */
  .header__inner{
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 12px;
  }
  .logo{ font-size: 1.2rem; }
  .lang-switcher{ order: 2; margin-left: auto; }
  .menu{
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 0 -8px;
    padding: 4px 8px;
    scrollbar-width: none;
  }
  .menu::-webkit-scrollbar{ display: none; }
  .menu a{ padding: 6px 12px; font-size: .88rem; white-space: nowrap; }

  .container{ padding-inline: 18px; }
  h1{ font-size: 1.85rem; }
  .hero{ padding-block: 40px 50px; }
  .hero__card{ padding: 28px 22px; }
  .hero__card-amount{ font-size: 2.8rem; }
  .section{ padding-block: 50px; }
  .article__content{ padding: 24px 18px; }

  .rating-box{ flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
  .rating-box__score{ font-size: 3rem; }

  .footer__inner{ grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom .container{ flex-direction: column; gap: 10px; }

  .author-byline{ grid-template-columns: 60px 1fr; padding: 16px; gap: 14px; }
  .author-byline__avatar{ width: 60px; height: 60px; }
  .author-byline__name{ font-size: 1rem; }
  .author-byline__bio{ font-size: .86rem; }
  .article-meta{ font-size: .82rem; padding: 9px 14px; }

  table{ font-size: .88rem; }
  th, td{ padding: 10px 12px; }

  .btn{ padding: 12px 24px; font-size: .94rem; }
  .btn--xl{ padding: 16px 32px; font-size: 1.02rem; }
}

/* --- NEW-specific: changelog timeline + update entries --- */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  border-left: 2px solid var(--line);
  padding-left: 30px;
  position: relative;
}
.changelog-entry {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
}
.changelog-entry::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--emerald);
}
.changelog-entry--major::before { background: var(--coral); box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--coral); }
.changelog-entry__date {
  display: inline-block;
  background: var(--surface-2);
  color: var(--emerald);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.changelog-entry--major .changelog-entry__date {
  background: var(--coral);
  color: var(--bg);
}
.changelog-entry__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.changelog-entry__body {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.changelog-entry__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 6px;
  margin-right: 8px;
  margin-top: 12px;
  background: var(--surface-2);
  color: var(--text-mute);
}
.changelog-entry__tag--new { background: var(--emerald); color: var(--bg); }
.changelog-entry__tag--fix { background: var(--gold); color: var(--bg); }
.changelog-entry__tag--change { background: var(--coral); color: var(--bg); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card__date {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.news-card__excerpt {
  color: var(--text-mute);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 480px) {
  .changelog { padding-left: 22px; }
  .changelog-entry::before { left: -30px; width: 11px; height: 11px; }
  .changelog-entry { padding: 18px; }
}
