/* ==========================================================================
   mgakasinot.us.com — site layer
   Papercut editorial: deep teal-slate + terracotta on warm bone.

   INSULATION: the shared theme/base.css is edited by parallel domain sessions
   and has already been rewritten mid-build once. Every token base.css consumes
   is therefore redeclared here on body.theme-pnp, so a rewrite upstream cannot
   change this site's appearance.
   ========================================================================== */

body.theme-pnp{
  /* surfaces — airy cool white, matching the high-key artwork */
  --bg:#f6f7fb; --surface:#ffffff; --surface-2:#eef0f7; --surface-3:#e2e5f0;
  --ink:#171a3a; --ink-soft:#4a4f75; --ink-faint:#7c819f;
  --line:#dfe2ee; --line-soft:#eaecf4; --line-strong:#c6cadc;

  /* brand — deep indigo */
  --brand:#2a2a72; --brand-2:#3b3bb0; --brand-3:#1c1c52; --brand-ink:#ffffff;

  /* accent — acid lime on indigo; the site's signature pairing */
  --accent:#c8f065; --accent-2:#e2ff9a; --accent-ink:#1c1c52;

  /* states */
  --ok:#1f7a5c; --ok-bg:#e6f6ef; --ok-line:#b9e4d0;
  --no:#b23b3b; --no-bg:#fdeaea; --no-line:#f3c4c4;
  --warn-bg:#fff7e0; --warn-line:#f1dfa2; --info-bg:#eaedfb;

  /* shape — fully rounded, pill buttons */
  --radius:22px; --radius-sm:14px; --radius-xs:8px;
  --shadow-xs:0 1px 2px rgba(23,26,58,.06);
  --shadow:0 1px 2px rgba(23,26,58,.05), 0 14px 32px -16px rgba(42,42,114,.22);
  --shadow-lg:0 2px 6px rgba(23,26,58,.06), 0 30px 64px -26px rgba(42,42,114,.35);
  --ring:0 0 0 3px rgba(200,240,101,.55);

  --maxw:1320px; --measure:none; --prose:1320px; --wide:1320px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --font-body:-apple-system,BlinkMacSystemFont,"Segoe UI","Inter",Roboto,"Helvetica Neue",Arial,sans-serif;
  --font-head:-apple-system,BlinkMacSystemFont,"Segoe UI Variable Display","Segoe UI","Inter",Roboto,"Helvetica Neue",Arial,sans-serif;

  background:var(--bg); color:var(--ink);
}

/* base.css's .btn uses a gradient of --accent-2 -> --accent. Pin it flat: lime pill, indigo text. */
body.theme-pnp .btn{
  background:var(--accent); background-image:none; color:var(--accent-ink);
  border:0; font-weight:700; letter-spacing:.005em; border-radius:999px;
  box-shadow:0 1px 0 rgba(23,26,58,.08);
}
body.theme-pnp .btn:hover{ background:var(--accent-2); }
body.theme-pnp .btn--ondark{ background:var(--accent); color:var(--accent-ink) }

/* --------------------------------------------------------------- typography */
body.theme-pnp h1,body.theme-pnp h2,body.theme-pnp h3{
  font-family:var(--font-head); font-weight:800; letter-spacing:-.022em;
  color:var(--brand-3);
}
body.theme-pnp h1{ line-height:1.08; }
body.theme-pnp h2{
  line-height:1.18; margin-top:2.6rem; padding-top:1.15rem;
  border-top:1px solid var(--line);
}
body.theme-pnp .prose > section:first-child > h2{ border-top:0; padding-top:0; margin-top:1rem; }
body.theme-pnp h3{ line-height:1.25; margin-top:1.7rem; color:var(--brand); }
body.theme-pnp p,body.theme-pnp li{ line-height:1.68; }

/* the site's signature: a short lime pill under every H2 */
body.theme-pnp h2::after{
  content:""; display:block; width:44px; height:6px; margin-top:.6rem;
  background:var(--accent); border-radius:999px;
}

/* ------------------------------------------------------------- centred column */
/* FULL WIDTH: the column token now matches the shell, so prose, sections and
   crumbs all fill the wrap instead of sitting in a narrow centred measure. */
:root{ --col:1320px }
body.theme-pnp .content .prose{ max-width:var(--col); margin-inline:auto }
body.theme-pnp .sec{ max-width:var(--col); margin-inline:auto }
body.theme-pnp .crumbs{ max-width:var(--col); margin-inline:auto }
body.theme-pnp .content > .wrap > section{ max-width:var(--col); margin-inline:auto }

/* base.css caps running text at --measure; full width means no cap */
body.theme-pnp .prose p,
body.theme-pnp .prose li,
body.theme-pnp .prose > section > p,
body.theme-pnp .content p,
body.theme-pnp .content li{ max-width:none }

/* Single-column full width. Per-paragraph CSS columns were tried and removed: each <p>
   became its own 2-column block, which fragments a paragraph mid-sentence. */
/* opt-out for deliberately full-width sections */
body.theme-pnp .sec--wide{max-width:none;margin-inline:0}

/* base.css v2 pulls wide blocks outward with negative margins computed from its own
   --prose. Neutralise it: this site keeps everything inside one readable column. */
@media (min-width:1000px){
  body.theme-pnp .content .prose > .toc,
  body.theme-pnp .content .prose > .rec-head,
  body.theme-pnp .content .prose > .paylist,
  body.theme-pnp .content .prose > .people,
  body.theme-pnp .content .prose .table-wrap,
  body.theme-pnp .content .prose > .sec-fig{
    margin-inline:0; width:auto; max-width:100%;
  }
}

/* ------------------------------------------------------------------- hero */
body.theme-pnp .hero{
  position:relative; isolation:isolate; overflow:hidden;
  background:var(--brand-3);
}
body.theme-pnp .hero__bg{ position:absolute; inset:0; z-index:0 }
body.theme-pnp .hero__bg img{
  width:100%; height:100%; object-fit:cover; object-position:center 42%;
  display:block; border:0; border-radius:0;
}
body.theme-pnp .hero::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg,
    rgba(28,28,82,.96) 0%, rgba(42,42,114,.90) 40%,
    rgba(42,42,114,.55) 66%, rgba(59,59,176,.18) 100%);
}
body.theme-pnp .hero__inner{ position:relative; z-index:2; padding-block:clamp(2.6rem,6vw,4.6rem) }
body.theme-pnp .hero h1{ color:#ffffff; text-wrap:balance }
body.theme-pnp .hero .lead{ color:#dfe1f5; max-width:56ch }
body.theme-pnp .hero .eyebrow{
  color:var(--accent-2); font-family:var(--font-body); font-weight:600;
  letter-spacing:.09em; text-transform:uppercase; font-size:.76rem;
}
body.theme-pnp .hero h1::after{ display:none }

/* byline sits on the dark hero image, so it needs explicit light colours —
   it inherited --ink-soft and was unreadable against the photograph */
body.theme-pnp .hero .byline{
  display:flex; align-items:center; gap:.7rem; margin-top:1.1rem;
  font-size:.86rem; color:#cfd2ee;
}
body.theme-pnp .hero .byline *{ color:#cfd2ee }
body.theme-pnp .hero .byline strong,body.theme-pnp .hero .byline b,
body.theme-pnp .hero .byline a{ color:#ffffff }
body.theme-pnp .hero .byline img{
  width:38px; height:38px; border-radius:50%; flex:none; object-fit:cover;
  border:2px solid rgba(255,255,255,.4);
}

/* featured partner panel in the hero — the real class is .hero-feat.
   A light card inside a dark hero inherits light text unless colour is set
   explicitly on the card, which is how this first rendered unreadable. */
body.theme-pnp .hero-feat{
  background:var(--surface); color:var(--ink);
  border-radius:var(--radius); box-shadow:var(--shadow-lg);
  border:1px solid var(--line); padding:1.25rem 1.35rem;
}
body.theme-pnp .hero-feat *{ color:var(--ink) }
body.theme-pnp .hero-feat h2,body.theme-pnp .hero-feat .hero-feat__name{
  color:var(--brand-3); font-size:1.35rem; margin:.5rem 0 .3rem;
  border-top:0; padding-top:0;
}
body.theme-pnp .hero-feat h2::after{ display:none }
body.theme-pnp .hero-feat__kicker{
  font-size:.7rem; letter-spacing:.09em; text-transform:uppercase;
  color:var(--ink-faint); margin:0;
}
body.theme-pnp .hero-feat__logo{
  background:var(--brand-3); border-radius:var(--radius-sm);
  display:grid; place-items:center; padding:.9rem; margin:.7rem 0;
}
body.theme-pnp .hero-feat__logo *{ color:#ffffff }
body.theme-pnp .hero-feat__logo img{ max-height:44px; width:auto; border:0; background:none }
body.theme-pnp .hero-feat__meta{ margin:.6rem 0; font-size:.86rem }
body.theme-pnp .hero-feat__meta > div{ display:flex; gap:.5rem; margin:.18rem 0 }
body.theme-pnp .hero-feat__meta dt{ color:var(--ink-faint); min-width:5.6rem }
body.theme-pnp .hero-feat__meta dd{ margin:0; font-weight:600 }
body.theme-pnp .hero-feat .tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin:.7rem 0; padding:0 }
body.theme-pnp .hero-feat .tags li{ list-style:none }
body.theme-pnp .hero-feat .pill--no{ color:var(--no) }
body.theme-pnp .hero-feat .btn{ display:block; text-align:center; margin-top:.8rem; color:var(--accent-ink) }
body.theme-pnp .hero-feat .fine{ font-size:.74rem; color:var(--ink-faint); margin:.6rem 0 0 }

/* two-column hero once there is room for the card beside the copy */
@media (min-width:980px){
  body.theme-pnp .hero__inner--split{
    display:grid; grid-template-columns:1.25fr .75fr; gap:2.4rem; align-items:center;
  }
}

/* ------------------------------------------------------------- key facts */
body.theme-pnp .facts{
  background:var(--surface-2); border-block:1px solid var(--line);
}
body.theme-pnp .facts__dot{
  width:7px; height:7px; border-radius:50%; background:var(--accent);
  display:inline-block; margin-right:.6rem; flex:none;
}

/* ------------------------------------------------------- recommendation cards
   Real class names are .top3/.card (featured) and .rec-list/.rec-card (full list). */
body.theme-pnp .top3{ display:grid; gap:1rem; margin:1.4rem 0 }
@media (min-width:820px){ body.theme-pnp .top3{ grid-template-columns:repeat(3,1fr) } }

body.theme-pnp .top3 .card,
body.theme-pnp .rec-card{
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow-xs);
  padding:1.15rem 1.2rem;
  transition:box-shadow .25s var(--ease), transform .25s var(--ease);
}
body.theme-pnp .top3 .card:hover,
body.theme-pnp .rec-card:hover{ box-shadow:var(--shadow); transform:translateY(-2px) }

body.theme-pnp .top3 .card h3,body.theme-pnp .rec-card h3{ margin:.6rem 0 .35rem }
body.theme-pnp .top3 .card p,body.theme-pnp .rec-card p{ font-size:.92rem }
body.theme-pnp .top3 .card code,body.theme-pnp .rec-card code{
  font-size:.82em; background:var(--surface-3); padding:.08em .35em; border-radius:4px;
}

/* logo plate — the artwork is light-on-dark, so the plate must be dark */
body.theme-pnp .top3 .mark,
body.theme-pnp .rec-logo{
  background:var(--brand-3); border-radius:var(--radius-sm);
  display:grid; place-items:center; padding:.9rem; min-height:76px;
}
body.theme-pnp .top3 .mark img,body.theme-pnp .rec-logo img{
  max-height:46px; width:auto; border:0; background:none; border-radius:0;
}
body.theme-pnp .top3 .mark *,body.theme-pnp .rec-logo *{ color:#fffdf8 }

body.theme-pnp .rec-list{ display:grid; gap:1rem; margin:1.4rem 0; padding:0; list-style:none }
@media (min-width:760px){
  body.theme-pnp .rec-card{
    display:grid; grid-template-columns:170px 1fr 190px; gap:1.2rem; align-items:center;
  }
}
body.theme-pnp .rec-meta{ font-size:.86rem; color:var(--ink-soft) }
body.theme-pnp .rec-cta .btn{ display:block; text-align:center }
body.theme-pnp .rec-card .tags{ display:flex; flex-wrap:wrap; gap:.4rem; padding:0; margin:.55rem 0 }
body.theme-pnp .rec-card .tags li,body.theme-pnp .top3 .tags li{ list-style:none }
body.theme-pnp .top3 .tags{ display:flex; flex-wrap:wrap; gap:.4rem; padding:0; margin:.55rem 0 }
body.theme-pnp .rec-card .fine,body.theme-pnp .top3 .fine{
  font-size:.74rem; color:var(--ink-faint); margin:.5rem 0 0;
}
body.theme-pnp .wordmark{
  font-family:var(--font-head); font-weight:600; letter-spacing:.04em;
  color:#fffdf8; text-transform:uppercase; font-size:1.05rem;
}

/* pills — the non-EEA labels must read as information, not decoration */
body.theme-pnp .pill{
  display:inline-block; font-size:.76rem; font-weight:600;
  padding:.22rem .6rem; border-radius:999px; border:1px solid;
}
body.theme-pnp .pill--no{ background:var(--no-bg); border-color:var(--no-line); color:var(--no) }
body.theme-pnp .pill--ok{ background:var(--ok-bg); border-color:var(--ok-line); color:var(--ok) }

/* ---------------------------------------------------------------- figures */
body.theme-pnp figure.inline,body.theme-pnp figure.banner,body.theme-pnp .split__media{
  margin:1.9rem 0;
}
body.theme-pnp figure.inline,body.theme-pnp figure.banner{ max-width:900px }
body.theme-pnp figure.banner{ max-width:1100px }
body.theme-pnp figure img,body.theme-pnp .split__media img{
  width:100%; height:auto; display:block;
  border-radius:var(--radius); border:1px solid var(--line);
  background:var(--surface-2);
}
body.theme-pnp figcaption{
  margin-top:.6rem; font-size:.86rem; color:var(--ink-soft);
  border-left:2px solid var(--accent); padding-left:.7rem; line-height:1.5;
}

body.theme-pnp .split{ display:grid; gap:1.7rem; align-items:start }
@media (min-width:860px){
  body.theme-pnp .split{ grid-template-columns:1.08fr .92fr }
  body.theme-pnp .split--flip .split__body{ order:2 }
}

/* ----------------------------------------------------------------- tables */
body.theme-pnp .table-wrap{ overflow-x:auto; margin:1.9rem 0 }
body.theme-pnp table{ width:100%; border-collapse:collapse; font-size:.95rem }
body.theme-pnp caption{
  caption-side:bottom; text-align:left; margin-top:.65rem;
  font-size:.86rem; color:var(--ink-soft);
  border-left:2px solid var(--accent); padding-left:.7rem;
}
body.theme-pnp thead th{
  background:var(--brand); color:var(--brand-ink);
  text-align:left; font-weight:600; font-size:.86rem;
  letter-spacing:.03em; padding:.68rem .8rem;
}
body.theme-pnp tbody th,body.theme-pnp tbody td{
  padding:.68rem .8rem; border-bottom:1px solid var(--line); vertical-align:top;
}
body.theme-pnp tbody th{ text-align:left; font-weight:600; color:var(--brand-3) }
body.theme-pnp tbody tr:nth-child(even){ background:var(--surface-2) }

/* ------------------------------------------------------------------- toc */
body.theme-pnp .toc{
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:var(--radius); padding:1.1rem 1.25rem; margin:1.6rem 0;
}
body.theme-pnp .toc h2{ border-top:0; padding-top:0; margin-top:0; font-size:1rem }
body.theme-pnp .toc h2::after{ display:none }
body.theme-pnp .toc ol{ columns:2; column-gap:1.6rem; margin:.7rem 0 0; padding-left:1.1rem }
body.theme-pnp .toc li{ break-inside:avoid; margin:.2rem 0 }
body.theme-pnp .toc summary{ cursor:pointer; list-style:none }
body.theme-pnp .toc summary::-webkit-details-marker{ display:none }
body.theme-pnp .toc summary h2{ display:inline-block; margin:0; font-size:1rem }

/* sitemap + FAQ disclosure widgets */
body.theme-pnp .sitemap{
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:var(--radius); padding:1rem 1.2rem; margin:1.6rem 0;
}
body.theme-pnp .sitemap summary{ cursor:pointer; font-weight:600; color:var(--brand) }
body.theme-pnp .sitemap__cols{
  display:grid; gap:1.2rem; margin-top:1rem;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}
body.theme-pnp .sitemap__cols h3{ font-size:.92rem; margin:0 0 .4rem }
body.theme-pnp .sitemap__cols ul{ padding-left:1rem; margin:0 }
body.theme-pnp .sitemap__cols li{ font-size:.86rem; margin:.15rem 0 }

body.theme-pnp .faq details{
  border:1px solid var(--line); border-radius:var(--radius-sm);
  background:var(--surface); margin:.6rem 0; padding:.85rem 1rem;
}
body.theme-pnp .faq summary{ cursor:pointer; font-weight:600; color:var(--brand-3) }
body.theme-pnp .faq .a{ margin-top:.6rem }

/* payment logo strip */
body.theme-pnp .paylogos{
  display:flex; flex-wrap:wrap; gap:.55rem; padding:0; margin:1.2rem 0; list-style:none;
}
body.theme-pnp .paylogos li{
  display:flex; align-items:center; gap:.4rem; list-style:none;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-xs); padding:.3rem .55rem; font-size:.78rem;
}
body.theme-pnp .paylogos img{
  height:20px; width:auto; border:0; border-radius:0; background:none;
}
body.theme-pnp .fine{ font-size:.8rem; color:var(--ink-soft) }
@media (max-width:700px){ body.theme-pnp .toc ol{ columns:1 } }
body.theme-pnp .toc a{ text-decoration:none; color:var(--brand) }
body.theme-pnp .toc a:hover{ text-decoration:underline }

/* ------------------------------------------------------------- notes / RG */
body.theme-pnp .note{
  background:var(--info-bg); border-left:3px solid var(--brand-2);
  padding:.85rem 1rem; border-radius:var(--radius-xs); font-size:.94rem;
}
body.theme-pnp .note--warn{ background:var(--warn-bg); border-left-color:var(--accent) }

/* --------------------------------------------------------------- payments */
body.theme-pnp .paystrip,body.theme-pnp .paylist{
  display:flex; flex-wrap:wrap; gap:.6rem; align-items:center; margin:1.2rem 0;
}
body.theme-pnp .paystrip img,body.theme-pnp .paylist img{
  height:26px; width:auto; background:var(--surface);
  border:1px solid var(--line); border-radius:var(--radius-xs); padding:.3rem .5rem;
}

/* ----------------------------------------------------------------- header
   light bar with a lime hairline — the opposite of every sibling's dark header */
body.theme-pnp .site-header{
  background:rgba(255,255,255,.92); backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid var(--line); position:sticky; top:0; z-index:40;
}
body.theme-pnp .site-header::after{ background:var(--accent); height:4px }
body.theme-pnp .site-header a{ color:var(--ink) }
body.theme-pnp .site-header .brand strong,body.theme-pnp .site-header .brand b{ color:var(--brand); font-family:var(--font-head); font-weight:800; letter-spacing:-.02em }
body.theme-pnp .site-header .brand span,body.theme-pnp .site-header .brand small{ color:var(--ink-faint) }
body.theme-pnp .brand__mark img{ border-radius:12px; background:none; padding:0 }
body.theme-pnp .nav a{ text-decoration:none; font-size:.93rem; font-weight:600; border-radius:999px; padding:.42rem .8rem }
body.theme-pnp .nav a:hover{ background:var(--surface-2); color:var(--brand) }
body.theme-pnp .nav a[aria-current]{ background:var(--brand); color:#fff }
body.theme-pnp .topbar{ background:var(--brand-3); color:#cfd2ee }
body.theme-pnp .topbar a{ color:#fff }
body.theme-pnp .topbar .age,body.theme-pnp .age{ background:var(--accent); color:var(--accent-ink); border-radius:6px; padding:0 .35rem; font-weight:800 }

/* ----------------------------------------------------------------- footer */
body.theme-pnp .site-footer{
  background:var(--brand-3); color:#cfd2ee; margin-top:3.5rem;
}
body.theme-pnp .site-footer a{ color:#cfd2ee }
body.theme-pnp .site-footer a:hover{ color:var(--accent-2) }
body.theme-pnp .site-footer h2{
  color:#ffffff; font-size:.94rem; border-top:0; padding-top:0; margin-top:0;
}
body.theme-pnp .site-footer h2::after{ display:none }

/* ------------------------------------------------------------ topic chips */
body.theme-pnp .chips{ margin:1.4rem 0 }
body.theme-pnp .chips ul{
  display:flex; flex-wrap:wrap; gap:.5rem; padding:0; margin:0; list-style:none;
}
body.theme-pnp .chips li{ list-style:none }
body.theme-pnp .chips a{
  font-size:.86rem; text-decoration:none; padding:.34rem .78rem;
  border:1px solid var(--line-strong); border-radius:999px;
  background:var(--surface); color:var(--brand);
}
body.theme-pnp .chips a:hover{ background:var(--brand); color:var(--brand-ink); border-color:var(--brand) }

/* ------------------------------------------------------------- author box */
body.theme-pnp .author{
  display:flex; gap:1rem; align-items:flex-start; margin:1.9rem 0;
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:var(--radius); padding:1.1rem 1.2rem;
}
body.theme-pnp .author img{
  width:60px; height:60px; border-radius:50%; flex:none; object-fit:cover;
  border:2px solid var(--surface);
}

/* --------------------------------------------------------------- a11y */
body.theme-pnp a:focus-visible,body.theme-pnp button:focus-visible{
  outline:none; box-shadow:var(--ring); border-radius:var(--radius-xs);
}

@media (prefers-reduced-motion:reduce){
  body.theme-pnp *{ transition:none !important; animation:none !important }
}

/* base.css turns the first <strong> of a .note into a block title; our notes use <strong> mid-sentence */
body.theme-pnp .note>strong:first-child{ display:inline; margin:0 }

/* comparison-table verdict icons */
body.theme-pnp td img.tick{ display:inline-block; vertical-align:-3px; margin-right:.35rem; width:16px; height:16px }

/* audit fill photographs: compact so a photo per H3 reads as illustration, not as a gallery */
body.theme-pnp figure.fill{ max-width:380px; margin:.9rem 0 1.1rem }
body.theme-pnp figure.fill img{ width:100%; height:auto; border-radius:14px }
body.theme-pnp figure.fill figcaption{ font-size:.82rem }
@media (min-width:1000px){ body.theme-pnp figure.fill{ float:right; margin:.2rem 0 .8rem 1.4rem } body.theme-pnp .sec h3, body.theme-pnp .sec table, body.theme-pnp .sec .table-wrap{ clear:both } }
