:root {
    --font-sans: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --brand: #1e4ed8;
    --brand-hover: #1b46c4;
    --ink: #0f172a;
    --body: #1f2937;
    --muted: #475569;
    --line: #cbd5e1;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --canvas: #f6f7f9;
    /* shared dark palette + accents for cross-section cohesion
       (--pwi-navy matches the global footer wrapper so every dark surface aligns) */
    --pwi-navy: #0d1e40;
    --pwi-navy-deep: #091830;
    --pwi-sky: #93c5fd;
    --pwi-hairline: #dbe4f0;
    --pwi-dark-glow: radial-gradient(900px 420px at 50% -20%, rgba(30, 78, 150, 0.30) 0%, rgba(30, 78, 150, 0) 62%);
}

body {
    font-family: var(--font-sans);
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

.dd.is-open .soft-elev { box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08); }

.bg-canvas { background: var(--canvas) !important; }
.bg-surface { background: var(--surface) !important; }
.bg-surface-soft { background: var(--surface-soft) !important; }
.text-ink { color: var(--ink) !important; }
.text-body { color: var(--body) !important; }
.text-muted { color: var(--muted) !important; }
.border-line { border-color: var(--line) !important; }

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
}
.about-hero .btn-ghost {
    background: rgba(147, 197, 253, 0.14);
    border: 1px solid rgba(147, 197, 253, 0.32);
    color: #93c5fd;
}
.about-hero .btn-ghost:hover {
    background: #1E4ED8;
    border-color: #1E4ED8;
    color: #fff;
}
.about-hero-actions .btn-primary,
.about-hero .btn-ghost {
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.about-hero-actions .btn-primary:hover,
.about-hero-actions .btn-primary:focus-visible,
.about-hero .btn-ghost:hover,
.about-hero .btn-ghost:focus-visible {
    transform: none;
    box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
    .about-hero-actions .btn-primary,
    .about-hero .btn-ghost {
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    }
    .about-hero-actions .btn-primary:hover,
    .about-hero-actions .btn-primary:focus-visible,
    .about-hero .btn-ghost:hover,
    .about-hero .btn-ghost:focus-visible {
        transform: none;
    }
}
.about-shell {
    background: #071426;
    color: #cbd5e1;
}
.about-kicker {
    margin: 0 0 0.85rem;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.about-hero .about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(147, 197, 253, 0.14);
    border: 1px solid rgba(147, 197, 253, 0.32);
    border-radius: 999px;
    padding: 0.28rem 0.85rem;
    color: #93c5fd;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}
.about-hero .about-kicker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}
.about-display {
    margin: 0;
    color: #fff;
    font-size: clamp(2.55rem, 10.5vw, 3.75rem);
    line-height: 0.93;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.about-display span {
    display: block;
    color: #60a5fa;
}
.about-section-title {
    margin: 0;
    color: #f1f5f9;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.96;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: uppercase;
}
.about-lede {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1rem;
    line-height: 1.625;
    max-width: 42rem;
}
@media (min-width: 640px) {
    .about-lede { font-size: 1.125rem; }
}
.about-hero {
    position: relative;
    overflow: hidden;
    background: var(--pwi-navy);
    min-height: clamp(430px, 46vh, 560px);
    display: flex;
    align-items: center;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 55%, rgba(6,14,34,0.97) 100%),
        linear-gradient(105deg, rgba(7,16,30,0.90) 0%, rgba(10,22,50,0.70) 50%, rgba(7,16,30,0.40) 100%);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 640px) {
    .about-hero-overlay {
        background:
            linear-gradient(to bottom, transparent 45%, rgba(6,14,34,0.97) 100%),
            linear-gradient(105deg, rgba(7,16,30,0.90) 0%, rgba(10,22,50,0.72) 55%, rgba(7,16,30,0.48) 100%);
    }
}
.about-hero > .max-w-7xl,
.about-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 1.5rem !important;
    padding-bottom: clamp(2rem, 4vw, 2.75rem) !important;
}
@media (min-width: 640px) {
    .about-hero > .max-w-7xl,
    .about-hero-inner {
        padding-top: 2rem !important;
        padding-bottom: clamp(2.5rem, 5vw, 3.5rem) !important;
    }
}
@media (min-width: 1024px) {
    .about-hero > .max-w-7xl,
    .about-hero-inner {
        padding-top: 3rem !important;
    }
}
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.about-hero-actions a {
    min-height: 44px;
    white-space: nowrap;
}
.about-stat-band {
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
    background: #0a1830;
}
.about-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.about-stat-strip > div {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0.55rem;
    text-align: left;
    padding: 0.3rem 1.15rem;
}
.about-stat-strip > div:not(:first-child)::before {
    display: none;
}
.stat-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}
.stat-icon svg {
    display: block;
}
.about-stat-strip strong {
    display: inline;
    color: #f8fafc;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.15;
    font-weight: 600;
    margin-top: 0;
    white-space: nowrap;
}
.about-stat-strip span:not(.stat-icon) {
    display: inline;
    margin-top: 0;
    color: #93c5fd;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.history-intro {
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.hist-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
}
.hist-card {
    background: rgba(147, 197, 253, 0.10);
    border: 1px solid rgba(147, 197, 253, 0.26);
    border-radius: 1rem;
    padding: 1.25rem 1.15rem 1.35rem;
    min-height: 8.75rem;
}
.hist-year {
    margin: 0 0 0.4rem;
    color: #93c5fd;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}
.hist-event {
    margin: 0;
    color: rgba(241, 245, 249, 0.86);
    font-size: 0.92rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
@media (min-width: 560px) {
    .hist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 900px) {
    .hist-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .hist-card {
        padding: 1.35rem 1.25rem 1.5rem;
    }
}
@media (min-width: 1600px) {
    .hist-card {
        padding: 1.6rem 1.5rem 1.75rem;
    }
    .hist-year {
        font-size: 1.05rem;
    }
    .hist-event {
        font-size: 1rem;
    }
}
.about-pgisr-callout {
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(147, 197, 253, 0.18);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem 2rem;
}
.about-pgisr-callout-text {
    min-width: 0;
}
.about-pgisr-callout-eyebrow {
    margin: 0 0 0.35rem;
    color: var(--pwi-sky);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.about-pgisr-callout-body {
    margin: 0;
    max-width: 42rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.92rem;
    line-height: 1.6;
}
.about-pgisr-callout-body strong {
    color: #f1f5f9;
    font-weight: 600;
}
.about-pgisr-callout-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-height: 44px;
    box-sizing: border-box;
    padding: 0.7rem 1.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(147, 197, 253, 0.32);
    background: rgba(147, 197, 253, 0.08);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.about-pgisr-callout-cta:hover,
.about-pgisr-callout-cta:focus-visible {
    background: #1E4ED8;
    border-color: #1E4ED8;
    color: #fff;
}
.about-pgisr-callout-cta svg {
    transition: transform 180ms ease;
}
.about-pgisr-callout-cta:hover svg {
    transform: translateX(2px);
}
@media (prefers-reduced-motion: reduce) {
    .about-pgisr-callout-cta svg { transition: none; }
}
.about-history {
    background:
        var(--pwi-dark-glow),
        linear-gradient(180deg, var(--pwi-navy) 0%, var(--pwi-navy-deep) 60%, #0a1830 100%);
    color: #cbd5e1;
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
}
.about-history .about-kicker {
    color: var(--pwi-sky);
}
.about-history .about-section-title {
    color: #f1f5f9;
}
.quality-pol-panel {
    position: relative;
    margin-top: -1px;
    background: #0a1830;
    color: #cbd5e1;
}
.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
}
.quality-panel {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quality-panel .about-kicker {
    color: var(--pwi-sky);
}
.quality-panel .about-section-title,
.quality-panel h3 {
    color: #f8fafc;
}
.quality-panel p,
.quality-panel li {
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.65;
}
.quality-panel ul {
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}
.quality-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.quality-check-box {
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(96, 165, 250, 0.12);
}
.quality-check-box svg {
    width: 13px;
    height: 13px;
}
.quality-grid > .scroll-reveal:nth-child(2) { transition-delay: 80ms; }
.quality-panel ul > .scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.quality-panel ul > .scroll-reveal:nth-child(2) { transition-delay: 60ms; }
.quality-panel ul > .scroll-reveal:nth-child(3) { transition-delay: 120ms; }
.about-tagline-band {
    background: #ffffff;
}
.about-tagline-frame {
    padding-top: clamp(1.75rem, 5vw, 2.5rem);
    padding-bottom: clamp(1.75rem, 5vw, 2.5rem);
}
@media (max-width: 900px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .about-stat-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 26rem;
        padding-top: 1.6rem;
        padding-bottom: 1.7rem;
    }
    .about-stat-strip > div {
        justify-content: flex-start;
        padding: 0.4rem 0.75rem;
        min-width: 0;
    }
    .about-stat-strip > div:nth-child(2n + 1)::before {
        display: none;
    }
}
@media (max-width: 560px) {
    .about-stat-strip {
        max-width: none;
        padding-top: 1.5rem;
        padding-bottom: 1.55rem;
    }
    .about-stat-strip > div {
        gap: 0.35rem;
        padding: 0.35rem 0.5rem;
    }
    .about-stat-strip strong,
    .about-stat-strip span:not(.stat-icon) {
        white-space: normal;
    }
    .about-stat-strip strong {
        font-size: 0.98rem;
    }
    .about-hero-actions a {
        width: 100%;
    }
}

/* ---- Scroll reveal ---- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(.22,1,.36,1), transform 600ms cubic-bezier(.22,1,.36,1);
}
.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 768px) {
.about-footer .footer-cols {
  align-items: start;
}
.about-footer .footer-cols > div {
  padding-right: 1rem;
}
.about-footer .footer-cols > div + div {
  padding-left: 1.25rem;
}
}

.quality-pol-panel {
    overflow: hidden;
}
.about-tagline-img {
    max-width: 1024px;
}
.about-cta {
    background: linear-gradient(180deg, #0d1e40 0%, #091830 100%);
}
.about-cta-eyebrow {
    color: var(--pwi-sky);
}
.about-cta-title {
    text-wrap: balance;
    color: #fff;
}
.about-cta-lede {
    color: #94a3b8;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    box-sizing: border-box;
    background: #1E4ED8;
    color: #fff;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.8125rem 1.75rem;
    text-decoration: none;
    transition: background 180ms ease;
}
.about-cta-btn:hover,
.about-cta-btn:focus-visible {
    background: #1b46c4;
}
@media (max-width: 639px) {
    .about-hero {
        min-height: auto;
        align-items: flex-start;
    }
    .about-hero-inner .about-display {
        font-size: 2.12rem !important;
        line-height: 1.04 !important;
    }
    .about-hero-inner .about-lede {
        margin-top: 1rem !important;
        font-size: 0.92rem !important;
        line-height: 1.45 !important;
    }
}

/* Match homepage: CTA band flows into footer */
.pwi-site-bottom > .site-cta.led-cta {
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
main + .pwi-site-bottom {
    margin-top: -1px;
}
@media (min-width: 768px) {
    .pwi-site-bottom .pwi-footer-grid {
        padding-top: 1.5rem;
    }
}
