/* --- MATERIAL DESIGN 3 SYSTEM VARIABLES --- */
:root {
    /* Updated to a deeper, more authoritative "Security Indigo" */
    --md-sys-primary: #0b57d0; 
    --md-sys-primary-dark: #0842a0;
    --md-sys-surface: #fdfeff;
    --md-sys-surface-container: #ffffff;
    --md-sys-secondary-container: #f0f4f9;
    --md-sys-on-surface: #1f1f1f;
    --md-sys-outline: #dee2e6;
    --md-sys-text-secondary: #474747;
    
    /* Optimized Elevation for 2026 UI */
    --elevation-1: 0 1px 3px 0 rgba(0,0,0,.08), 0 4px 8px 3px rgba(0,0,0,.05);
    --elevation-2: 0 12px 32px -8px rgba(0,0,0,0.1), 0 0 1px 0 rgba(0,0,0,0.1);
    
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-sm: 14px;
    --transition: all 0.35s cubic-bezier(0.15, 0, 0.15, 1);
}

/* --- CORE RESET & SMOOTHING --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: 'Google Sans', 'Roboto', system-ui, sans-serif;
    background-color: var(--md-sys-surface);
    color: var(--md-sys-on-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

footer {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 0 24px;
}

/* --- DYNAMIC HEADER --- */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 0 var(--md-sys-outline);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.brand-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--md-sys-primary);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.nav-links a {
    text-decoration: none;
    color: var(--md-sys-on-surface);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a.active { 
    background-color: var(--md-sys-primary); 
    color: #ffffff; 
    box-shadow: 0 8px 16px -4px rgba(11, 87, 208, 0.3);
}

.nav-links a:hover:not(.active) { background-color: var(--md-sys-secondary-container); }

/* --- CATEGORY NAVIGATION --- */
.category-nav {
    background: var(--md-sys-surface-container);
    border-bottom: 1px solid var(--md-sys-outline);
    padding: 18px 0;
}

#blogitem p {margin-bottom:20px;}
#blogitem ul, #blogitem ol {margin-left:40px; margin-bottom:20px;}
#blogitem h2 {margin-bottom:20px;}

.sidecontents li {border-bottom:1px solid #ccc; padding-bottom:10px; padding-top:3px;}
.sidecontents a:hover {color: #0b57d0!important; }

.cat-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-scroll-wrapper::-webkit-scrollbar { display: none; }

.cat-chip {
    white-space: nowrap;
    background: var(--md-sys-surface-container);
    border: 1.5px solid var(--md-sys-outline);
    color: var(--md-sys-text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.cat-chip:hover { 
    background: var(--md-sys-primary); 
    color: #ffffff !important; 
    border-color: var(--md-sys-primary);
    box-shadow: 0 6px 12px rgba(11, 87, 208, 0.2);
}

/* --- REFINED HERO SECTION --- */
.hero-intro {
    background: radial-gradient(at 0% 0%, rgba(11, 87, 208, 0.04) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(11, 87, 208, 0.02) 0px, transparent 50%);
    padding: 90px 24px 30px; 
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-intro h1 { 
    font-size: clamp(3.2rem, 9vw, 5rem); 
    font-weight: 800;
    color: #041e49; 
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, #0b57d0 0%, #041e49 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-intro p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--md-sys-text-secondary);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- GRID ARCHITECTURE --- */
.page-container {
    max-width: 1200px;
    margin: 40px auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* --- CARD STYLING --- */
.tool-card {
    background: var(--md-sys-surface-container);
    border: 1px solid var(--md-sys-outline);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.tool-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--elevation-2); 
    border-color: var(--md-sys-primary);
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height:1.4em;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #041e49;
}
.tool-card h3 a {color:#0b57d0; text-decoration:none;}
.tool-card h3 a:hover {color:#0b57d0; text-decoration:underline;}

/* FEATURED HUB UPGRADES */
.featured-hub { margin-bottom: 120px; }
.featured-hub .directory-grid { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 40px; }

.featured-card {
    background: linear-gradient(165deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(11, 87, 208, 0.15);
    padding: 48px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.featured-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 8px;
    background: var(--md-sys-primary);
}

.featured-card h3 { 
    font-size: 2rem; 
    margin: 20px 0; 
    line-height: 1.2;
    color: var(--md-sys-primary);
}

.meta-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--md-sys-primary);
    background: #e8f0fe;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
}

/* ADSENSE INTEGRATION STYLING */
.ad-hint {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #aeb4b9;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
}

ins.adsbygoogle {
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: block;
    min-height: 120px;
    border: 1px dashed var(--md-sys-outline);
}

/* CATEGORY ANCHORS */
.category-section { scroll-margin-top: 200px; margin-bottom: 120px; }
.category-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 3px solid #041e49;
    color: #041e49;
    letter-spacing: -0.04em;
}

/* --- INNER PAGE FACT SHEET --- */
.fact-sheet {
    display: flex;
    background: var(--md-sys-surface-container);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin: 48px 0;
    box-shadow: var(--elevation-1);
    border: 1.5px solid var(--md-sys-outline);
}

.data-point { flex: 1; text-align: center; position: relative; padding: 15px; }
.data-point:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--md-sys-outline);
}

.data-point .label { 
    display: block; 
    font-size: 12px; 
    font-weight: 800; 
    color: var(--md-sys-text-secondary); 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    letter-spacing: 1px;
}

#tool p {margin-bottom: 20px;}

.data-point .value { font-size: 20px; font-weight: 700; color: var(--md-sys-primary); }

/* --- PROS & CONS --- */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 64px 0; }
.pc-card { padding: 40px; border-radius: var(--radius-lg); border: 1.5px solid var(--md-sys-outline); }
.pc-card strong { display: block; font-size: 13px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1.5px; }
.pro-card { border-left: 10px solid #1e8e3e; background-color: #f6fdf9; }
.con-card { border-left: 10px solid #d93025; background-color: #fdf7f7; }

/* --- SIDEBAR --- */
.sidebar {
    background: rgba(11, 87, 208, 0.02);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(11, 87, 208, 0.05);
}

.sticky-sidebar { position: sticky; top: 140px; }

.home-shell{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.hero-wrap{
    margin: 16px auto 18px auto;
}
.hero-panel{
    border-radius:22px;
    border:1px solid var(--md-sys-outline);
    background: linear-gradient(135deg, rgba(99,43,127,.12) 0%, rgba(206,27,93,.08) 55%, rgba(25,118,210,.08) 100%);
    box-shadow: 0 10px 34px rgba(0,0,0,.06);
    padding: 30px;
    overflow:hidden;
    position:relative;
}
.hero-title{
    margin:0;
    font-size:2.35rem;
    letter-spacing:-0.02em;
    line-height:1.1;
}
.hero-sub{
    margin: 10px 0 0 0;
    color: var(--md-sys-text-secondary);
    font-size:1.05rem;
    line-height:1.7;
    max-width: 68ch;
}
.hero-actions{
    margin-top: 16px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    border-radius:12px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    color:var(--md-sys-primary);
    text-decoration:none;
    font-weight:800;
    font-size:13px;
}
.btn:hover{ filter:brightness(.98); }
.btn-primary{
    background: linear-gradient(135deg, var(--md-sys-primary) 0%, #1976d2 100%);
    color:#fff;
    border-color: transparent;
}
.btn-ghost{ background: transparent; }

.hero-kpis{
    margin-top: 16px;
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:12px;
}
@media (max-width: 760px){
    .hero-kpis{ grid-template-columns: 1fr; }
}
.kpi{
    background:#fff;
    border:1px solid var(--md-sys-outline);
    border-radius:16px;
    padding:14px;
}
.kpi .label{
    font-size:12px;
    color: var(--md-sys-text-secondary);
    margin-bottom:6px;
}
.kpi .value{
    font-size:1.1rem;
    font-weight:900;
    color: var(--md-sys-primary);
}

.search-card{
    margin-top:14px;
    background:#fff;
    border:1px solid var(--md-sys-outline);
    border-radius:18px;
    padding: 14px;
    display:flex;
    gap:10px;
    align-items:center;
}
.search-card input{
    flex:1;
    border:1px solid var(--md-sys-outline);
    border-radius:12px;
    padding:12px 12px;
    font-size:14px;
    outline:none;
}
.search-card input:focus{
    border-color: var(--md-sys-primary);
}
.search-card .hint{
    font-size:12px;
    color: var(--md-sys-text-secondary);
}

.section-title{
    font-size: 1.75rem;
    margin: 0 0 16px 0;
    color: var(--md-sys-primary);
    letter-spacing:-0.01em;
}
.subtle{
    color: var(--md-sys-text-secondary);
}

.featured-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:14px;
}
@media (max-width: 980px){
    .featured-grid{ grid-template-columns: 1fr; }
}
.featured-card2{
    border-radius:18px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    padding:18px;
    position:relative;
    overflow:hidden;
}
.featured-card2 .tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 10px;
    border-radius:999px;
    background: rgba(99,43,127,.10);
    color: var(--md-sys-primary);
    font-size:12px;
    font-weight:900;
    border:1px solid rgba(99,43,127,.20);
}
.featured-card2 h3{
    margin:12px 0 8px 0;
    color: var(--md-sys-primary);
    letter-spacing:-0.01em;
}
.featured-card2 p{
    margin:0;
    color: var(--md-sys-text-secondary);
    line-height:1.65;
    font-size:14px;
}
.featured-card2 .actions{
    margin-top:14px;
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:center;
}
.featured-card2 .mini{
    font-size:12px;
    color: var(--md-sys-text-secondary);
}

.category-block{
    margin-top: 38px;
}
.category-head{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-end;
    justify-content:space-between;
    gap:10px;
    margin-bottom: 14px;
}
.category-head h2{
    margin:0;
    font-size:1.45rem;
    color: var(--md-sys-primary);
    letter-spacing:-0.01em;
}
.cat-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 10px;
    border:1px solid var(--md-sys-outline);
    border-radius:999px;
    background:#fff;
    font-size:12px;
    color: var(--md-sys-text-secondary);
}
.cat-chip strong{
    color: var(--md-sys-primary);
    font-weight:900;
}
.anchor{
    scroll-margin-top: 90px;
}

/* Search: class-based hiding is hardest to break */
.is-hidden{ display:none !important; }

.no-results{
    margin: 14px 0 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--md-sys-outline);
    background: #fff;
    color: var(--md-sys-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
.no-results strong{ color: var(--md-sys-primary); }

/* Sidebar */
.sidebar-card{
    margin-top: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--md-sys-outline);
}
.sidebar-card h4{
    font-size: 14px;
    margin: 0 0 10px 0;
}
.cat-nav{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:8px;
}
.cat-nav a{
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--md-sys-outline);
    text-decoration: none;
    color: var(--md-sys-primary);
    font-size: 13px;
    font-weight:800;
    background:#fff;
}
.cat-nav a:hover{ filter:brightness(.98); }
.cat-nav .count{
    font-size:12px;
    color: var(--md-sys-text-secondary);
    font-weight:800;
}
.quick-links{
    display:grid;
    gap:8px;
}
.quick-links a{
    display:block;
    padding:10px 12px;
    border-radius:12px;
    border:1px solid var(--md-sys-outline);
    text-decoration:none;
    color: var(--md-sys-primary);
    font-size:13px;
    font-weight:800;
    background:#fff;
}
.quick-links a:hover{ filter:brightness(.98); }

.notice{
    border:1px solid rgba(99,43,127,.25);
    background: rgba(99,43,127,.06);
    border-radius:16px;
    padding:14px;
    font-size:13px;
    line-height:1.65;
    color: var(--md-sys-text-secondary);
}
.notice strong{ color: var(--md-sys-primary); }
/* ---------------------------
   TOOL PAGE UX / DESIGN UPGRADE
   (kept local to tool page)
---------------------------- */

.tool-shell{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}
.breadcrumb{
    padding:16px 0;
    font-size:13px;
    color:var(--md-sys-text-secondary);
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
}
.breadcrumb a{
    color:var(--md-sys-primary);
    text-decoration:none;
}
.breadcrumb .sep{ opacity:.6; }

.tool-hero{
    background: linear-gradient(135deg, rgba(99,43,127,.10) 0%, rgba(206,27,93,.08) 100%);
    border:1px solid var(--md-sys-outline);
    border-radius:20px;
    padding:28px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}
.tool-hero-top{
    display:flex;
    flex-wrap:wrap;
    gap:12px 16px;
    align-items:center;
    justify-content:space-between;
}
.tool-title{
    margin:0;
    font-size:2.15rem;
    line-height:1.15;
    letter-spacing:-0.02em;
}
.tool-subrow{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}
.pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    font-size:12px;
    color:var(--md-sys-text-secondary);
}
.pill strong{
    color:var(--md-sys-primary);
    font-weight:700;
}
.pill .dot{
    width:7px;height:7px;border-radius:50%;
    background: var(--md-sys-primary);
    opacity:.85;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    border-radius:12px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    color:var(--md-sys-primary);
    text-decoration:none;
    font-weight:700;
    font-size:13px;
}
.btn:hover{ filter:brightness(.98); }
.btn-primary{
    background: linear-gradient(135deg, var(--md-sys-primary) 0%, #1976d2 100%);
    color:#fff;
    border-color: transparent;
}
.btn-ghost{
    background: transparent;
}
.btn small{
    font-weight:600;
    opacity:.85;
}

/* Layout: main + aside inside main-content area */
.tool-layout{
    display:grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap:24px;
    margin-top:22px;
}
@media (max-width: 980px){
    .tool-layout{ grid-template-columns: 1fr; }
}
.card{
    background:#fff;
    border:1px solid var(--md-sys-outline);
    border-radius:18px;
    padding:22px;
}
.card + .card{ margin-top:18px; }

.card h2{
    margin:0 0 10px 0;
    font-size:1.25rem;
    letter-spacing:-0.01em;
    color:var(--md-sys-primary);
}
.card h3{
    margin:0 0 8px 0;
    font-size:1.05rem;
    color:var(--md-sys-primary);
}
.muted{
    color:var(--md-sys-text-secondary);
}
.lead{
    font-size:1rem;
    line-height:1.75;
    margin:0;
}
.prose p{
    line-height:1.8;
    margin: 14px 0 0 0;
}
.prose p:first-child{ margin-top:0; }

.kpi-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:12px;
    margin-top:16px;
}
@media (max-width: 700px){
    .kpi-grid{ grid-template-columns: 1fr; }
}
.kpi{
    border:1px solid var(--md-sys-outline);
    border-radius:16px;
    padding:14px;
    background:#fff;
}
.kpi .label{
    font-size:12px;
    color:var(--md-sys-text-secondary);
    margin-bottom:6px;
}
.kpi .value{
    font-size:1.12rem;
    font-weight:800;
    color:var(--md-sys-primary);
}

.toc{
    display:grid;
    gap:8px;
    margin-top:10px;
}
.toc a{
    display:block;
    padding:10px 12px;
    border-radius:14px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    color:var(--md-sys-primary);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}
.toc a:hover{ filter:brightness(.98); }

.feature-list{
    list-style:none;
    padding:0;
    margin:10px 0 0 0;
    display:grid;
    gap:10px;
}
.feature-list li{
    padding:12px 12px 12px 42px;
    border:1px solid var(--md-sys-outline);
    border-radius:16px;
    position:relative;
    line-height:1.65;
    background:#fff;
}
.feature-list li:before{
    content:"✓";
    position:absolute;
    left:14px;
    top:10px;
    width:20px;
    height:20px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(99,43,127,.10);
    color: var(--md-sys-primary);
    font-weight:900;
}

.usecase-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:10px;
}
@media (max-width: 800px){
    .usecase-grid{ grid-template-columns: 1fr; }
}
.usecase{
    border:1px solid var(--md-sys-outline);
    border-radius:16px;
    padding:16px;
    background:#fff;
}
.usecase p{ margin:8px 0 0 0; line-height:1.7; }

.proscons{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:10px;
}
@media (max-width: 800px){
    .proscons{ grid-template-columns: 1fr; }
}
.pros-box, .cons-box{
    border-radius:16px;
    padding:16px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
}
.pros-box .badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:800;
    color:#2e7d32;
    margin-bottom:10px;
}
.cons-box .badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:800;
    color:#e65100;
    margin-bottom:10px;
}
.pros-box .badge .chip,
.cons-box .badge .chip{
    width:10px;height:10px;border-radius:50%;
}
.pros-box .badge .chip{ background:#2e7d32; }
.cons-box .badge .chip{ background:#e65100; }

.callout{
    background: linear-gradient(135deg, rgba(99,43,127,.12) 0%, rgba(25,118,210,.10) 100%);
    border:1px solid rgba(99,43,127,.25);
}
.callout h2{ color: var(--md-sys-primary); }
.callout .btn-primary{ margin-top:12px; }

.related-list{
    list-style:none;
    padding:0;
    margin:10px 0 0 0;
    display:grid;
    gap:8px;
}
.related-list a{
    display:block;
    padding:10px 12px;
    border-radius:14px;
    border:1px solid var(--md-sys-outline);
    text-decoration:none;
    color:var(--md-sys-primary);
    font-weight:700;
    font-size:13px;
    background:#fff;
}
.related-list a:hover{ filter:brightness(.98); }

.sticky-col{
    position:sticky;
    top:18px;
    display:grid;
    gap:16px;
}
@media (max-width: 980px){
    .sticky-col{ position:static; }
}

.mini-facts{
    display:grid;
    gap:10px;
    margin-top:10px;
}
.fact{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    border:1px solid var(--md-sys-outline);
    background:#fff;
    font-size:13px;
}
.fact span:first-child{ color:var(--md-sys-text-secondary); }
.fact span:last-child{ font-weight:800; color:var(--md-sys-primary); }

.anchor{
    scroll-margin-top: 90px;
}
/* --- MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .page-container { grid-template-columns: 1fr; gap: 48px; }
    .sidebar { order: 2; margin-top: 60px; }
    .sticky-sidebar { position: relative; top: 0; }
}

@media (max-width: 768px) {
    .hero-intro { padding: 100px 24px 60px; }
    .hero-intro h1 { font-size: 3.2rem; }
    .fact-sheet { flex-direction: column; gap: 24px; border-radius: var(--radius-lg); }
    .data-point:not(:last-child)::after { display: none; }
    .data-point { border-bottom: 1px solid var(--md-sys-outline); padding: 24px 0; }
    .data-point:last-child { border-bottom: none; }
    .pros-cons-grid { grid-template-columns: 1fr; }
}