
    /* ── Design Tokens ─────────────────────────────────────── */
    :root {
      --pr-forest:    #1a5c45;   /* Plenty – deep emerald */
      --pr-gold:      #d4a017;   /* Rich – warm gold */
      --pr-gold-lt:   #f6e8b4;
      --pr-emerald:   #27846b;
      --pr-mint:      #e8f5f0;
      --pr-ink:       #1a1f2e;
      --pr-muted:     #6c757d;
      --pr-border:    #dde3e8;
      --pr-bg:        #f7f8fa;
      --pr-white:     #ffffff;
      --pr-ad-bg:     #fafbfc;
      --pr-nav-bg:    #ffffff;
      --pr-header-h:  62px;
      --pr-radius:    10px;
      --pr-shadow:    0 2px 12px rgba(26,92,69,.07);
      --pr-shadow-md: 0 4px 24px rgba(26,92,69,.11);
      --transition:   0.22s cubic-bezier(.4,0,.2,1);
    }

    /* ── Base ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      font-size: 15.5px;
      background: var(--pr-bg);
      color: var(--pr-ink);
      min-height: 100vh;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Raleway', sans-serif;
      color: var(--pr-ink);
    }

    a { color: var(--pr-forest); text-decoration: none; transition: color var(--transition); }
    a:hover { color: var(--pr-gold); }

    /* ── Top Bar ───────────────────────────────────────────── */
    #topbar {
      background: var(--pr-forest);
      color: rgba(255,255,255,.75);
      font-size: 12px;
      padding: 5px 0;
      letter-spacing: .02em;
    }
    #topbar a { color: rgba(255,255,255,.75); }
    #topbar a:hover { color: var(--pr-gold); }

    /* ── Header ────────────────────────────────────────────── */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--pr-white);
      border-bottom: 1px solid var(--pr-border);
      height: var(--pr-header-h);
      display: flex;
      align-items: center;
      box-shadow: 0 1px 8px rgba(26,92,69,.06);
      transition: box-shadow var(--transition);
    }
    header.site-header.scrolled { box-shadow: var(--pr-shadow-md); }

    /* Logo */
    .site-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      white-space: nowrap;
    }
    .logo-icon {
      width: 36px; height: 36px;
      background: var(--pr-forest);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--pr-gold);
      font-size: 18px;
      flex-shrink: 0;
      transition: transform var(--transition), background var(--transition);
    }
    .site-logo:hover .logo-icon { background: var(--pr-gold); color: var(--pr-white); transform: rotate(-4deg) scale(1.05); }
    .logo-text { font-family: 'Raleway', sans-serif; font-size: 1.45rem; line-height: 1; }
    .logo-plenty { color: var(--pr-forest); }
    .logo-rich   { color: var(--pr-gold); }

    /* Nav */
    .site-nav .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--pr-ink);
      padding: 6px 14px;
      border-radius: 6px;
      position: relative;
      transition: color var(--transition), background var(--transition);
    }
    .site-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 14px; right: 14px;
      height: 2px;
      background: var(--pr-gold);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform var(--transition);
    }
    .site-nav .nav-link:hover, .site-nav .nav-link.active {
      color: var(--pr-forest);
      background: var(--pr-mint);
    }
    .site-nav .nav-link:hover::after,
    .site-nav .nav-link.active::after { transform: scaleX(1); }

    /* Search */
    .header-search {
      position: relative;
      width: 190px;
      transition: width var(--transition);
    }
    .header-search:focus-within { width: 230px; }
    .header-search input {
      border: 1px solid var(--pr-border);
      border-radius: 20px;
      padding: 5px 14px 5px 36px;
      font-size: 13px;
      background: var(--pr-bg);
      color: var(--pr-ink);
      width: 100%;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }
    .header-search input:focus {
      border-color: var(--pr-emerald);
      box-shadow: 0 0 0 3px rgba(39,132,107,.12);
    }
    .header-search i {
      position: absolute;
      left: 12px; top: 50%;
      transform: translateY(-50%);
      color: var(--pr-muted);
      font-size: 14px;
      pointer-events: none;
    }

    /* Subscribe btn */
    .btn-subscribe {
      background: var(--pr-gold);
      color: var(--pr-white);
      border: none;
      border-radius: 20px;
      padding: 6px 18px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .02em;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }
    .btn-subscribe:hover {
      background: var(--pr-forest);
      color: var(--pr-white);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(212,160,23,.3);
    }

    /* ── Page Layout ───────────────────────────────────────── */
    .page-layout {
      display: grid;
      grid-template-columns: 220px 1fr 200px;
      gap: 22px;
      max-width: 1240px;
      margin: 28px auto;
      padding: 0 18px;
      align-items: start;
    }

    /* ── Sidebar Shared ────────────────────────────────────── */
    .sidebar-card {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      padding: 18px 16px;
      margin-bottom: 18px;
      transition: box-shadow var(--transition);
    }
    .sidebar-card:hover { box-shadow: var(--pr-shadow); }
    .sidebar-title {
      font-family: 'Raleway', sans-serif;
      font-size: .95rem;
      color: var(--pr-forest);
      border-bottom: 2px solid var(--pr-gold);
      padding-bottom: 8px;
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 7px;
    }
    .sidebar-title i { font-size: 1rem; color: var(--pr-gold); }

    /* Category nav */
    .cat-list { list-style: none; padding: 0; margin: 0; }
    .cat-list li a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 10px;
      border-radius: 7px;
      font-size: 13.5px;
      color: var(--pr-ink);
      font-weight: 500;
      transition: background var(--transition), color var(--transition), padding-left var(--transition);
    }
    .cat-list li a:hover {
      background: var(--pr-mint);
      color: var(--pr-forest);
      padding-left: 14px;
    }
    .cat-list li a .badge-count {
      background: var(--pr-mint);
      color: var(--pr-forest);
      border-radius: 10px;
      padding: 1px 7px;
      font-size: 11px;
      font-weight: 600;
      transition: background var(--transition);
    }
    .cat-list li a:hover .badge-count { background: var(--pr-gold-lt); color: var(--pr-gold); }
    .cat-list li a i { font-size: .9rem; margin-right: 7px; color: var(--pr-emerald); }

    /* Tags cloud */
    .tags-cloud { display: flex; flex-direction: column; gap: 5px; }
    .tag-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--pr-bg);
      border: 1px solid var(--pr-border);
      border-radius: 7px;
      padding: 5px 11px;
      font-size: 12.5px;
      color: var(--pr-muted);
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition), padding-left var(--transition);
    }
    .tag-pill::before {
      content: '#';
      font-size: 11px;
      font-weight: 700;
      color: var(--pr-gold);
      opacity: .7;
    }
    .tag-pill:hover {
      background: var(--pr-mint);
      color: var(--pr-forest);
      border-color: rgba(39,132,107,.25);
      padding-left: 15px;
    }

    /* Newsletter sidebar */
    .newsletter-sidebar {
      background: linear-gradient(135deg, var(--pr-forest) 0%, var(--pr-emerald) 100%);
      color: #fff;
      border-radius: var(--pr-radius);
      padding: 20px 16px;
      margin-bottom: 18px;
    }
    .newsletter-sidebar h6 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 6px;
    }
    .newsletter-sidebar p { font-size: 12.5px; color: rgba(255,255,255,.8); margin-bottom: 12px; }
    .newsletter-sidebar input {
      width: 100%;
      border: none;
      border-radius: 6px;
      padding: 7px 10px;
      font-size: 13px;
      font-family: 'Nunito', sans-serif;
      margin-bottom: 8px;
      outline: none;
    }
    .newsletter-sidebar .btn-nl {
      width: 100%;
      background: var(--pr-gold);
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background var(--transition);
    }
    .newsletter-sidebar .btn-nl:hover { background: #b8860b; }

    /* ── Main Content ──────────────────────────────────────── */
    .main-content { min-width: 0; }

    /* Hero featured article */
    .featured-hero {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      overflow: hidden;
      margin-bottom: 22px;
      transition: box-shadow var(--transition), transform var(--transition);
    }
    .featured-hero:hover { box-shadow: var(--pr-shadow-md); transform: translateY(-2px); }
    .featured-hero .hero-img {
      width: 100%; height: 220px;
      object-fit: cover;
      background: linear-gradient(135deg, var(--pr-forest) 0%, var(--pr-emerald) 50%, var(--pr-gold) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .hero-img-placeholder {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      color: rgba(255,255,255,.3);
      letter-spacing: .1em;
    }
    .featured-hero .hero-body { padding: 22px 24px 20px; }
    .featured-label {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--pr-gold-lt);
      color: var(--pr-gold);
      border: 1px solid rgba(212,160,23,.2);
      border-radius: 12px;
      padding: 3px 11px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .featured-hero h2 {
      font-size: 1.55rem;
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .featured-hero h2 a { color: var(--pr-ink); }
    .featured-hero h2 a:hover { color: var(--pr-forest); }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 12.5px;
      color: var(--pr-muted);
      flex-wrap: wrap;
    }
    .article-meta i { color: var(--pr-emerald); margin-right: 3px; }

    /* Section heading */
    .section-heading {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 16px;
    }
    .section-heading h3 {
      font-size: 1.15rem;
      margin: 0;
    }
    .section-heading::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--pr-border);
    }

    /* Article card */
    .article-card {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      overflow: hidden;
      margin-bottom: 16px;
      display: flex;
      transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    }
    .article-card:hover {
      box-shadow: var(--pr-shadow);
      transform: translateY(-2px);
      border-color: rgba(39,132,107,.2);
    }
    .article-card .card-thumb {
      width: 130px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--pr-mint), var(--pr-gold-lt));
      display: flex; align-items: center; justify-content: center;
      color: var(--pr-emerald);
      font-size: 2rem;
    }
    .article-card .card-body-inner {
      padding: 14px 16px;
      display: flex; flex-direction: column; justify-content: space-between;
      flex: 1; min-width: 0;
    }
    .article-cat-badge {
      display: inline-block;
      background: var(--pr-mint);
      color: var(--pr-forest);
      border-radius: 8px;
      padding: 2px 9px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 6px;
    }
    .article-card h5 {
      font-size: .97rem;
      margin-bottom: 5px;
      line-height: 1.3;
    }
    .article-card h5 a { color: var(--pr-ink); }
    .article-card h5 a:hover { color: var(--pr-forest); }
    .article-card p.excerpt {
      font-size: 12.5px;
      color: var(--pr-muted);
      margin: 0 0 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .read-more-link {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--pr-forest);
      display: inline-flex; align-items: center; gap: 4px;
      transition: gap var(--transition), color var(--transition);
    }
    .read-more-link:hover { gap: 8px; color: var(--pr-gold); }

    /* Pagination */
    .pr-pagination { display: flex; gap: 6px; }
    .pr-pagination .page-btn {
      width: 34px; height: 34px;
      border: 1px solid var(--pr-border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      background: var(--pr-white);
      color: var(--pr-ink);
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .pr-pagination .page-btn:hover,
    .pr-pagination .page-btn.active {
      background: var(--pr-forest);
      color: var(--pr-white);
      border-color: var(--pr-forest);
    }

    /* Contact form */
    .contact-section {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      padding: 24px;
      margin-top: 28px;
    }
    .contact-section h3 { font-size: 1.2rem; margin-bottom: 4px; }
    .contact-section p.sub { font-size: 13px; color: var(--pr-muted); margin-bottom: 18px; }
    .pr-input {
      width: 100%;
      border: 1px solid var(--pr-border);
      border-radius: 8px;
      padding: 9px 13px;
      font-size: 13.5px;
      font-family: 'Nunito', sans-serif;
      color: var(--pr-ink);
      background: var(--pr-bg);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      margin-bottom: 12px;
    }
    .pr-input:focus {
      border-color: var(--pr-emerald);
      box-shadow: 0 0 0 3px rgba(39,132,107,.1);
      background: var(--pr-white);
    }
    textarea.pr-input { resize: vertical; min-height: 110px; }
    .btn-send {
      background: var(--pr-forest);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex; align-items: center; gap: 7px;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .btn-send:hover {
      background: var(--pr-emerald);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(26,92,69,.25);
    }

    /* ── Ad Column ─────────────────────────────────────────── */
    .ad-unit {
      background: var(--pr-ad-bg);
      border: 1px dashed var(--pr-border);
      border-radius: var(--pr-radius);
      padding: 16px;
      margin-bottom: 18px;
      text-align: center;
    }
    .ad-unit .ad-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--pr-muted);
      margin-bottom: 10px;
      display: block;
    }
    .ad-placeholder {
      background: linear-gradient(135deg, #f0f4f8, #e8eff5);
      border-radius: 8px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--pr-muted);
      font-size: 12px;
      gap: 6px;
    }
    .ad-placeholder i { font-size: 1.4rem; color: var(--pr-border); }
    .ad-300 { height: 250px; }
    .ad-120 { height: 120px; }
    .ad-600 { height: 280px; }

    .promoted-card {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      padding: 14px;
      margin-bottom: 18px;
    }
    .promoted-card .promo-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--pr-gold);
      font-weight: 700;
      margin-bottom: 6px;
    }
    .promoted-card h6 {
      font-size: .85rem;
      margin-bottom: 5px;
      color: var(--pr-ink);
    }
    .promoted-card p { font-size: 11.5px; color: var(--pr-muted); margin: 0 0 10px; }
    .btn-promo {
      display: block;
      background: var(--pr-gold);
      color: #fff;
      border-radius: 6px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 600;
      text-align: center;
      transition: background var(--transition);
    }
    .btn-promo:hover { background: var(--pr-forest); color: #fff; }

    /* Stats ticker */
    .market-ticker {
      background: var(--pr-white);
      border: 1px solid var(--pr-border);
      border-radius: var(--pr-radius);
      padding: 14px;
      margin-bottom: 18px;
    }
    .ticker-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--pr-muted);
      margin-bottom: 10px;
      display: flex; align-items: center; gap: 5px;
    }
    .ticker-title::before {
      content: '';
      width: 6px; height: 6px;
      background: #22c55e;
      border-radius: 50%;
      display: inline-block;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }
    .ticker-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid var(--pr-border);
      font-size: 12px;
    }
    .ticker-row:last-child { border: none; padding-bottom: 0; }
    .ticker-row .sym { font-weight: 600; color: var(--pr-ink); }
    .ticker-row .up { color: #22c55e; font-weight: 600; font-size: 11.5px; }
    .ticker-row .dn { color: #ef4444; font-weight: 600; font-size: 11.5px; }

    /* ── Footer ────────────────────────────────────────────── */
    footer.site-footer {
      background: var(--pr-ink);
      color: rgba(255,255,255,.7);
      margin-top: 48px;
      padding: 42px 0 18px;
    }
    .footer-logo-text { font-family: 'Raleway', sans-serif; font-size: 1.4rem; }
    .footer-plenty { color: #6ee7b7; }
    .footer-rich   { color: var(--pr-gold); }
    .footer-tagline { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 5px; }
    .footer-heading {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255,255,255,.4);
      margin-bottom: 14px;
      font-weight: 600;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,.65); font-size: 13px; transition: color var(--transition); }
    .footer-links a:hover { color: var(--pr-gold); }
    .footer-divider { border-color: rgba(255,255,255,.08); margin: 24px 0 14px; }
    .footer-bottom { font-size: 12px; color: rgba(255,255,255,.35); }
    .social-links { display: flex; gap: 10px; margin-top: 14px; }
    .social-btn {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5);
      font-size: 15px;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .social-btn:hover {
      background: var(--pr-gold);
      color: #fff;
      border-color: var(--pr-gold);
    }

    /* ── Responsive ────────────────────────────────────────── */
    @media (max-width: 992px) {
      .page-layout {
        grid-template-columns: 200px 1fr;
      }
      .ad-column { display: none; }
    }
    @media (max-width: 768px) {
      .page-layout { grid-template-columns: 1fr; }
      .left-sidebar { display: none; }
      .article-card .card-thumb { width: 90px; }
    }

    /* ── Fade-in Animation ─────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp .5s ease forwards;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }
    .fade-up:nth-child(1) { animation-delay: .05s; }
    .fade-up:nth-child(2) { animation-delay: .12s; }
    .fade-up:nth-child(3) { animation-delay: .19s; }
    .fade-up:nth-child(4) { animation-delay: .26s; }
    .fade-up:nth-child(5) { animation-delay: .33s; }