/* ═══════════════════════════════════════════
   POWER100 HOMEPAGE
   ═══════════════════════════════════════════ */

/* ── Nav ── */
.p100-nav { background: var(--p-black); padding: 18px 0; position: sticky; top: 0; z-index: 200; }
.p100-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.p100-nav-logo { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--p-white); text-decoration: none; letter-spacing: 3px; }
.p100-nav-logo span { color: var(--p-red); }
.p100-nav-menu { display: flex; gap: 4px; }
.p100-nav-menu a { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--p-white); text-decoration: none; padding: 10px 20px; transition: background 0.2s; }
.p100-nav-menu a:hover { color: var(--p-red); }
.p100-nav-active { background: var(--p-red) !important; color: var(--p-white) !important; }
.p100-nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.p100-nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--p-white); margin: 5px 0; transition: 0.3s; }

/* ── IC Banner ── */
.p100-ic-banner { background: var(--p-dark); border-top: 3px solid var(--p-red); padding: 8px 0; }
.p100-ic-banner-inner { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.8); }
.p100-ic-banner-icon { color: var(--p-gold); }
.p100-ic-banner-btn { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--p-white); border: 1px solid rgba(255,255,255,0.3); padding: 4px 14px; text-decoration: none; transition: all 0.2s; }
.p100-ic-banner-btn:hover { background: var(--p-white); color: var(--p-black); }

/* ── Hero ── */
.p100-hero { background: var(--p-lightgray); padding: 60px 0; }
.p100-hero-grid { display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: center; }
.p100-hero-image { position: relative; overflow: hidden; }
.p100-hero-image img { width: 100%; display: block; }
.p100-hero-image-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-family: var(--font-body); font-size: 18px; font-weight: 700; line-height: 1.3; }
.p100-hero-label { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--p-red); font-style: italic; margin-bottom: 12px; display: block; }
.p100-hero-headline { font-family: var(--font-body); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--p-black); line-height: 1.2; margin: 0 0 16px; }
.p100-hero-divider { width: 80px; height: 2px; background: var(--p-black); margin: 16px 0 20px; }
.p100-hero-excerpt { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 24px; }
.p100-btn--green { background: var(--p-green); color: var(--p-white); font-size: 12px; }
.p100-btn--green:hover { background: #04a91c; color: var(--p-white); }

/* ── National News ── */
.p100-national-news { background: var(--p-dark); padding: 60px 0; border-top: 4px solid var(--p-red); }
.p100-nn-title { font-family: var(--font-body); font-size: 32px; font-weight: 700; color: var(--p-white); text-align: center; margin: 0 0 40px; }
.p100-nn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.p100-nn-date { font-size: 13px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 12px; }
.p100-nn-headline { font-family: var(--font-body); font-size: 22px; font-weight: 700; line-height: 1.3; margin: 0 0 16px; }
.p100-nn-headline a { color: var(--p-white); text-decoration: none; }
.p100-nn-headline a:hover { color: var(--p-red); }
.p100-nn-excerpt { display: flex; gap: 12px; margin: 16px 0; }
.p100-nn-arrow { color: var(--p-red); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.p100-nn-excerpt p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.75); margin: 0; }

/* ── EC Headshot Grid ── */
.p100-ec-grid-section { background: var(--p-dark2); padding: 60px 0; }
.p100-section-heading { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--p-white); margin: 0 0 32px; }
.p100-ec-headshot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.p100-ec-card { position: relative; text-decoration: none; text-align: center; overflow: hidden; transition: transform 0.3s; }
.p100-ec-card:hover { transform: translateY(-4px); }
.p100-ec-card-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 3px solid transparent; transition: border-color 0.3s; position: relative; }
.p100-ec-card:hover .p100-ec-card-photo { border-color: var(--p-red); }
.p100-ec-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.p100-ec-card-initials { width: 100%; height: 100%; background: var(--p-red); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 900; color: #fff; }
.p100-ec-card-rank { position: absolute; bottom: -2px; right: -2px; background: var(--p-red); color: #fff; font-size: 10px; font-weight: 900; padding: 2px 6px; border-radius: 10px; }
.p100-ec-card-name { font-size: 13px; font-weight: 700; color: var(--p-white); }
.p100-ec-card-title { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.p100-ec-card-hover { position: absolute; inset: 0; background: rgba(0,0,0,0.92); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; opacity: 0; transition: opacity 0.3s; pointer-events: none; border-radius: 8px; }
.p100-ec-card:hover .p100-ec-card-hover { opacity: 1; }
.p100-ec-card-hover-name { font-size: 14px; font-weight: 700; color: var(--p-white); margin-bottom: 4px; }
.p100-ec-card-hover-title { font-size: 11px; color: var(--p-red); margin-bottom: 8px; }
.p100-ec-card-hover-quote { font-size: 11px; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.4; margin-bottom: 10px; text-align: center; }
.p100-ec-card-hover-cta { font-size: 11px; font-weight: 700; color: var(--p-red); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── EC Spotlight ── */
.p100-ec-spotlight { background: var(--p-white); padding: 60px 0; }
.p100-ec-spotlight-grid { display: grid; grid-template-columns: 60% 40%; gap: 40px; }
.p100-ec-spotlight-label { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--p-black); margin: 0 0 16px; }
.p100-ec-byline { font-size: 13px; font-weight: 700; color: var(--p-red); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.p100-ec-definition { font-size: 14px; font-style: italic; color: var(--p-red); line-height: 1.6; margin-bottom: 20px; }
.p100-ec-spotlight-main h3 { font-size: 24px; font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
.p100-ec-spotlight-main h3 a { color: var(--p-black); text-decoration: none; }
.p100-ec-spotlight-img { width: 100%; margin-bottom: 16px; }
.p100-ec-spotlight-excerpt { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 16px; }
.p100-ec-spotlight-sidebar h3 { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
.p100-ec-spotlight-sidebar h3 a { color: var(--p-black); text-decoration: none; }
.p100-ec-sidebar-body { display: flex; gap: 12px; margin: 16px 0; }
.p100-ec-sidebar-body p { font-size: 14px; line-height: 1.65; color: #555; margin: 0; }

/* ── Popular Stories Feature ── */
.p100-pop-feature { background: var(--p-white); padding: 48px 0 0; border-top: 1px solid var(--p-border); }
.p100-pop-trend-label { font-size: 12px; color: var(--p-gray); text-transform: uppercase; letter-spacing: 1px; }
.p100-pop-trend-title { font-family: var(--font-accent); font-size: 32px; font-style: italic; color: var(--p-black); margin: 4px 0 0; }
.p100-pop-feature-article { background: var(--p-dark); padding: 48px 0; }
.p100-pop-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.p100-pop-feat-content h3 { font-size: 22px; font-weight: 700; margin: 0 0 16px; }
.p100-pop-feat-content h3 a { color: var(--p-white); text-decoration: none; }
.p100-pop-feat-content p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.p100-pop-feat-image img { width: 100%; }

/* ── Popular Stories Feed ── */
.p100-pop-feed { padding: 0; }
.p100-pop-row { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; padding: 40px 24px; }
.p100-pop-row-white { background: var(--p-white); }
.p100-pop-row-gray { background: var(--p-lightgray); }
.p100-pop-row-content h3 { font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.p100-pop-row-content h3 a { color: var(--p-black); text-decoration: none; }
.p100-pop-row-content p { font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 12px; }
.p100-pop-row-image img { width: 100%; }
.p100-pagination { text-align: center; padding: 40px 0; }
.p100-pagination a, .p100-pagination span { display: inline-block; padding: 8px 16px; margin: 0 4px; font-size: 14px; font-weight: 600; color: var(--p-black); text-decoration: none; border: 1px solid var(--p-border); }
.p100-pagination .current { background: var(--p-red); color: var(--p-white); border-color: var(--p-red); }

/* ── Shared ── */
.p100-label-red { font-size: 13px; font-weight: 600; color: var(--p-red); display: block; margin-bottom: 8px; }
.p100-read-more { font-size: 13px; font-weight: 700; color: var(--p-red); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.p100-read-more:hover { text-decoration: underline; }
.p100-social-icons { display: flex; gap: 6px; margin: 12px 0; }
.p100-social { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; transition: opacity 0.2s; }
.p100-social:hover { opacity: 0.8; color: #fff; }
.p100-social-linkedin { background: #0077B5; }
.p100-social-facebook { background: #1877F2; }
.p100-social-reddit { background: #FF4500; }
.p100-social-whatsapp { background: #25D366; }
.p100-social-email { background: #FB0401; }
.p100-social-threads { background: #000; }

/* ── Footer ── */
.p100-footer-disclaimer { background: var(--p-lightgray); padding: 48px 0; }
.p100-footer-disclaimer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.p100-footer-disclaimer-title { font-size: 18px; color: var(--p-red); font-style: italic; margin: 0 0 12px; }
.p100-footer-disclaimer p { font-size: 14px; line-height: 1.7; color: var(--p-gray); margin: 0; }
.p100-footer-main { background: var(--p-black); padding: 48px 0; }
.p100-footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; margin-bottom: 40px; }
.p100-footer-grid h5 { font-size: 15px; font-weight: 700; color: var(--p-white); margin: 0 0 16px; }
.p100-footer-grid a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; }
.p100-footer-grid a:hover { color: var(--p-red); }
.p100-footer-subscribe { display: flex; flex-direction: column; gap: 12px; }
.p100-footer-email { background: transparent; border: 1px solid rgba(255,255,255,0.3); padding: 12px 16px; color: var(--p-white); font-size: 14px; }
.p100-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.p100-footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: rgba(255,255,255,0.4); letter-spacing: 2px; }
.p100-footer-logo span { color: rgba(251,4,1,0.4); }
.p100-footer-bottom span:last-child { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── IC Popup ── */
.p100-ic-popup { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.p100-ic-popup-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.p100-ic-popup-modal { position: relative; background: var(--p-white); border-radius: 12px; padding: 40px 32px; max-width: 420px; width: 90%; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.p100-ic-popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 20px; color: var(--p-gray); cursor: pointer; }
.p100-ic-popup-icon { font-size: 36px; color: var(--p-red); margin-bottom: 16px; }
.p100-ic-popup-modal h2 { font-size: 24px; font-weight: 800; margin: 0 0 12px; color: var(--p-black); }
.p100-ic-popup-modal p { font-size: 15px; line-height: 1.6; color: var(--p-gray); margin: 0 0 24px; }
.p100-ic-popup-snooze { background: none; border: none; font-size: 13px; color: var(--p-gray); cursor: pointer; margin-top: 16px; text-decoration: underline; display: block; width: 100%; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .p100-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .p100-nn-grid { grid-template-columns: 1fr; gap: 32px; }
    .p100-ec-spotlight-grid { grid-template-columns: 1fr; }
    .p100-pop-feat-grid { grid-template-columns: 1fr; }
    .p100-pop-row { grid-template-columns: 1fr; }
    .p100-footer-disclaimer-grid { grid-template-columns: 1fr; }
    .p100-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .p100-nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--p-black); padding: 16px; }
    .p100-nav-menu.open { display: flex; }
    .p100-nav-mobile-toggle { display: block; }
    .p100-ec-headshot-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .p100-ec-card-photo { width: 70px; height: 70px; }
    .p100-footer-grid { grid-template-columns: 1fr; }
}
