
:root{
  --bg:#032402;
  --bg-soft:#083a0b;
  --panel:#0a460e;
  --panel-2:#115f10;
  --text:#f4f7fb;
  --muted:#aeb7c4;
  --line:rgba(215,221,230,.20);
  --accent:#d7dde6;
  --accent-2:#f4f7fb;
  --link:#7fd8ff;
  --green:#0f4d3f;
  --green-light:#1f8f6b;
  --yellow:#d7dde6;
  --nav-yellow:var(--yellow);
  --silver:#d7dde6;
  --chrome:#f4f7fb;
  --rhodium-dark:#8f9aaa;
  --shadow:0 24px 60px rgba(0,0,0,.38);
  --radius:22px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{overflow-x:hidden}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at top, rgba(21,130,20,.18), transparent 35%),
    linear-gradient(180deg, #032402 0%, #061e06 100%);
  color:var(--text);
  line-height:1.6;
  overflow-wrap:break-word;
}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{opacity:.92}
.exhibit-link{
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:2px;
}
.container{width:min(calc(100% - 2rem), var(--max));margin-inline:auto}
.section{padding:80px 0}
.section[id]{scroll-margin-top:110px}
.card{
  background:linear-gradient(180deg, rgba(10,70,14,.92), rgba(8,58,11,.92));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.site-header{
  position:sticky;top:0;z-index:50;
  background:
    linear-gradient(180deg, rgba(20,92,18,.38), rgba(7,58,9,.52)),
    linear-gradient(90deg, rgba(56,184,53,.18), rgba(21,130,20,.24)),
    url("whistleblower-header-tile-bright.png") center center / auto 140px repeat-x;
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;align-items:center;justify-content:center;
  gap:1rem;min-height:84px;position:relative;
}
.site-header .container{
  width:100%;
  max-width:none;
  margin-inline:0;
  padding-inline:1rem;
}
.brand{
  display:flex;align-items:center;justify-content:center;gap:14px;color:var(--text);min-width:0;width:100%
}
.brand > div{
  min-width:0;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:2px;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.brand img{
  width:72px;height:72px;border-radius:18px;
  box-shadow:0 10px 24px rgba(21,130,20,.22);
}
.brand-title{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  max-width:calc(100vw - 2rem);
  margin:0;
  line-height:0;
}
.brand-title .header-logo{
  display:block;
  width:min(361px, calc(100vw - 2rem));
  height:auto;
  max-height:156px;
  border-radius:0;
  box-shadow:none;
  object-fit:contain;
}
.subheader-nav{
  background:rgba(3,36,2,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.subheader-nav .container{
  width:100%;
  max-width:none;
  margin-inline:0;
  padding-inline:1rem;
}
.subheader-nav-inner{
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(14px, 3vw, 34px);
  flex-wrap:wrap;
}
.subheader-nav a{
  position:relative;
  color:var(--silver);
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.01em;
  white-space:nowrap;
  padding:10px 0;
}
.subheader-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:4px;
  height:2px;
  border-radius:999px;
  background:var(--nav-yellow);
  opacity:0;
  transform:scaleX(.55);
  transition:opacity .18s ease, transform .18s ease;
}
.subheader-nav a:hover,
.subheader-nav a:focus-visible{
  color:var(--nav-yellow);
  opacity:1;
}
.subheader-nav a:hover::after,
.subheader-nav a:focus-visible::after{
  opacity:1;
  transform:scaleX(1);
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.site-search-form{
  position:relative;
  display:flex;
  align-items:center;
  width:min(260px, 100%);
  margin-left:clamp(0px, 1.4vw, 10px);
}
.site-search-input{
  width:100%;
  height:38px;
  padding:8px 42px 8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font:inherit;
  font-size:.9rem;
  outline:none;
}
.site-search-input::placeholder{
  color:rgba(244,247,251,.68);
}
.site-search-input:focus{
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.12);
}
.site-search-button{
  position:absolute;
  right:4px;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#06111f;
  cursor:pointer;
}
.site-search-button:hover,
.site-search-button:focus-visible{
  box-shadow:0 0 0 3px rgba(255,255,255,.2);
}
.site-search-icon{
  position:relative;
  display:block;
  width:13px;
  height:13px;
  border:2px solid currentColor;
  border-radius:50%;
}
.site-search-icon::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-3px;
  width:7px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transform:rotate(45deg);
  transform-origin:center;
}
.nav-toggle{
  display:none;
  width:44px;height:44px;
  align-items:center;justify-content:center;flex-direction:column;
  flex:0 0 44px;gap:5px;
  background:rgba(3,36,2,.62);border:1px solid var(--line);color:var(--text);
  border-radius:12px;padding:0;font-size:0;line-height:0
}
.nav-toggle span{
  display:block;width:22px;height:2px;border-radius:999px;
  background:var(--nav-yellow);
  transition:transform .18s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}
.site-nav ul{
  list-style:none;display:flex;gap:10px;margin:0;padding:0;align-items:center;flex-wrap:nowrap
}
.site-nav{
  flex:0 0 auto;
}
.site-nav a{
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:44px;padding:0 16px;border-radius:999px;
  color:var(--silver);font-weight:700;font-size:.95rem;
  transition:color .18s ease, background-color .18s ease;
  white-space:nowrap;overflow-wrap:normal;
}
.site-nav a::after,.footer-nav a::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:7px;
  height:2px;
  border-radius:999px;
  background:var(--nav-yellow);
  opacity:0;
  transform:scaleX(.35);
  transition:opacity .18s ease, transform .18s ease;
}
.site-nav a:hover,.site-nav a.active,.site-nav a[aria-current="page"]{
  color:var(--nav-yellow);
  background:rgba(255,255,255,.06)
}
.site-nav a.active::after,.site-nav a[aria-current="page"]::after{
  opacity:1;
  transform:scaleX(1);
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.6rem;padding:14px 22px;border-radius:999px;
  font-weight:800;letter-spacing:.02em;border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#06111f;
  background:linear-gradient(135deg,var(--green),var(--accent-2));
  box-shadow:0 16px 35px rgba(21,130,20,.28);
}
.btn-solid-white{
  color:#06111f;
  background:#fff;
  border-color:#fff;
  box-shadow:0 16px 35px rgba(255,255,255,.18);
}
.btn-secondary{
  color:var(--text);border-color:rgba(37,168,33,.32);
  background:rgba(255,255,255,.03)
}
.btn-content-challenge{
  max-width:100%;
  min-width:0;
  white-space:normal;
  text-align:center;
  line-height:1.15;
  overflow-wrap:break-word;
}
.content-challenge-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:22px;
}
.content-challenge-stack{
  margin-top:10px;
}
.investigation-overview-actions{
  grid-column:1 / -1;
  display:flex;
  justify-content:flex-end;
  margin-top:4px;
}
.hero{
  padding:72px 0 30px;
}
.hero-grid{
  display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:start
}
.hero-copy h1{
  font-size:clamp(2.4rem,4.8vw,4.8rem);
  line-height:.98;margin:0 0 18px;font-weight:900;letter-spacing:-.03em
}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(56,184,53,.28);
  background:rgba(21,130,20,.14);
  color:#bafcca;font-weight:800;text-transform:uppercase;
  letter-spacing:.12em;font-size:.78rem;margin-bottom:16px
}
.lead{
  color:var(--muted);
  font-size:1.08rem;max-width:64ch
}
.hero-quote{
  margin:0 0 18px;
  color:var(--yellow);
  font-size:clamp(1.45rem,2.6vw,2.35rem);
  line-height:1.08;
  font-weight:900;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-panel{
  padding:18px;
}
.hero-panel .logo-frame{
  background:
    radial-gradient(circle at 50% 40%, rgba(21,130,20,.18), transparent 38%),
    linear-gradient(180deg,#0a460e,#032402);
  border-radius:26px;border:1px solid var(--line);
  padding:18px;
}
.hero-panel img{width:100%;aspect-ratio:1/1;object-fit:contain}
.quick-stats{
  margin-top:16px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px
}
.stat{
  border:1px solid var(--line);border-radius:18px;padding:14px;
  background:rgba(255,255,255,.03)
}
.stat strong{display:block;font-size:clamp(1.08rem,1.35vw,1.3rem)}
.stat span{color:var(--muted);font-size:.84rem;overflow-wrap:normal;word-break:normal}
.section-title{
  font-size:clamp(1.8rem,3vw,3rem);line-height:1.05;margin:0 0 12px;
  letter-spacing:-.03em;color:#fff
}
.section-copy{color:var(--muted);max-width:70ch}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.feature-card,.contact-card,.policy-card,.cta-card{
  padding:24px;
}
.icon-badge{
  width:52px;height:52px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(56,184,53,.16), rgba(21,130,20,.18));
  border:1px solid var(--line);font-size:1.3rem;margin-bottom:14px
}
.feature-card h3,.contact-card h3,.policy-card h2,.cta-card h2{margin:0 0 8px}
.feature-card h3,
.contact-card h3,
.policy-card h2,
.cta-card h1,
.cta-card h2,
.cta-card h3{
  color:#fff;
}
.feature-card p,.contact-card p,.policy-card p,.policy-card li,.cta-card p{color:var(--muted)}
.cta-card .lead,
.cta-card .section-copy,
.cta-card .strategy-intro,
.cta-card .evidence-callout,
.cta-card p,
.cta-card h1,
.cta-card h2,
.cta-card h3{
  width:100%;
  max-width:none;
}
.evidence-callout{
  margin:18px 0 24px;
  padding:18px 20px;
  border:1px solid rgba(244,247,251,.55);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}
.evidence-callout p{
  margin:0;
  color:#fff;
  font-weight:800;
  font-size:clamp(1rem,1.5vw,1.16rem);
  line-height:1.45;
}
.evidence-callout a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:4px;
  padding:4px 10px;
  border-radius:6px;
  background:#fff;
  color:#032402;
  font-weight:900;
  text-decoration:none;
}
.band{
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.steps{counter-reset:step}
.step{
  position:relative;padding-left:72px
}
.step::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:48px;height:48px;border-radius:50%;
  display:grid;place-items:center;font-weight:900;
  color:#06111f;background:linear-gradient(135deg,var(--green),var(--accent-2))
}
.list-clean{padding-left:1.2rem}
blockquote{
  margin:0;padding:24px;border-left:4px solid var(--accent-2);
  background:rgba(255,255,255,.03);border-radius:0 18px 18px 0;color:var(--silver)
}
.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:16px}
.strategy-card{display:grid;gap:22px}
.strategy-card h2{
  max-width:none;
  font-size:clamp(1.7rem,3vw,2.8rem);
  line-height:1.08;
}
.strategy-intro{
  max-width:none;
  font-size:1.08rem;
}
.strategy-content{
  display:grid;
  gap:22px;
}
.strategy-block{
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
}
.strategy-block h3{
  margin:0 0 16px;
  color:var(--yellow);
  font-size:1.25rem;
}
.strategy-entry{
  margin-top:16px;
}
.strategy-entry h4{
  margin:0 0 6px;
  color:var(--silver);
  font-size:1rem;
}
.strategy-entry p{
  margin:0;
}
.strategy-list{
  display:grid;
  gap:14px;
  margin:0;
  padding-left:1.25rem;
}
.strategy-list li{
  color:var(--muted);
}
.strategy-list strong{
  color:var(--silver);
}
.contact-wrap{
  display:grid;grid-template-columns:1fr .9fr;gap:22px
}
.contact-list{
  display:grid;gap:14px;margin-top:16px
}
.contact-item{
  display:flex;gap:12px;align-items:flex-start;padding:14px 16px;border-radius:16px;
  border:1px solid var(--line);background:rgba(255,255,255,.03)
}
.contact-form{display:grid;gap:14px}
label{font-weight:700;font-size:.96rem}
input,textarea,select{
  width:100%;padding:14px 16px;border-radius:14px;
  border:1px solid rgba(56,184,53,.2);
  background:#032402;color:var(--text);font:inherit
}
select{
  min-height:52px;
  padding-right:44px;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  background-color:#032402;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237df8a3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:18px 18px;
}
select:invalid{
  color:var(--muted);
}
select option{
  color:var(--text);
  background:#032402;
}
textarea{min-height:170px;resize:vertical}
.helper{color:var(--muted);font-size:.92rem}
.site-footer{
  padding:28px 0 40px;color:var(--muted)
}
.footer-grid{
  display:grid;
  gap:18px;
}
.footer-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  text-align:center;
  margin-bottom:12px;
}
.footer-nav a{
  position:relative;
  padding-bottom:6px;
  color:var(--silver);
  font-weight:700;
  transition:color .18s ease;
}
.footer-nav a::after{
  left:0;
  right:0;
  bottom:0;
}
.footer-nav a:hover,.footer-nav a.active,.footer-nav a[aria-current="page"]{
  color:var(--nav-yellow);
}
.footer-nav a.active::after,.footer-nav a[aria-current="page"]::after{
  opacity:1;
  transform:scaleX(1);
}
.footer-sep{
  color:rgba(255,255,255,.38);
}
.footer-brand{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-width:0;
}
.footer-brand img{
  width:72px;
  height:72px;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 10px 24px rgba(21,130,20,.22);
}
.footer-brand strong{
  display:block;
  color:#fff;
}
.footer-copy{
  width:100%;
  max-width:none;
}
.footer-copy p{
  margin:0 0 12px;
}
.footer-copy p:last-child{
  margin-bottom:0;
}
.footer-media{
  white-space:nowrap;
}
.footer-copy a{
  font-weight:700;
}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.legal-list{
  display:grid;gap:18px;padding:0;list-style:none;margin:24px 0 0;
  counter-reset:legal-item
}
.legal-list li{
  position:relative;
  padding:22px 22px 22px 82px;border:1px solid var(--line);border-radius:20px;
  background:rgba(255,255,255,.03)
}
.legal-list li::before{
  counter-increment:legal-item;
  content:counter(legal-item);
  position:absolute;
  left:22px;
  top:22px;
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#06111f;
  background:linear-gradient(135deg,var(--green),var(--accent-2));
}
.legal-list h2{
  color:#fff;
  margin:0 0 8px;
}
.page-hero{
  padding:56px 0 26px
}
.page-hero p{
  color:var(--muted);
  width:100%;
  max-width:none;
}
.muted{color:var(--muted)}
.note{
  padding:16px 18px;border-radius:18px;border:1px solid rgba(56,184,53,.24);
  background:rgba(21,130,20,.14);color:#c7ffd8
}
.search-results-panel{
  display:grid;
  gap:16px;
}
.search-status{
  color:var(--muted);
  margin:0;
}
.search-results-list{
  display:grid;
  gap:14px;
}
.search-result{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}
.search-result a{
  display:inline-block;
  color:#fff;
  font-weight:900;
  font-size:1.1rem;
  line-height:1.2;
  margin-bottom:8px;
}
.search-result p{
  margin:0;
  color:var(--muted);
}
.search-result-meta{
  display:block;
  color:var(--silver);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.small{font-size:.92rem}
@media (max-width: 960px){
  .hero-grid,.grid-3,.grid-2,.contact-wrap{grid-template-columns:1fr}
  .quick-stats{grid-template-columns:1fr}
}
@media (max-width: 1180px){
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:absolute;right:0;left:0;top:calc(100% + 10px);
    background:rgba(3,36,2,.97);border:1px solid var(--line);
    border-radius:20px;padding:12px;display:none;
    box-shadow:var(--shadow)
  }
  .site-nav.open{display:block}
  .site-nav ul{flex-direction:column;align-items:stretch}
  .site-nav a,.site-nav .btn{width:100%;justify-content:flex-start}
}
@media (max-width: 780px){
  .hero{padding:42px 0 24px}
  .section{padding:54px 0}
  .page-hero{padding:42px 0 20px}
  .brand-title{
    max-width:100%;
    line-height:0;
  }
  .brand-title .header-logo{
    width:min(330px, calc(100vw - 1.5rem));
  }
  .subheader-nav .container{padding-inline:.75rem}
  .subheader-nav-inner{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:8px;
    min-height:0;
    padding:10px 0;
  }
  .subheader-nav a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 6px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    background:rgba(255,255,255,.035);
    font-size:.84rem;
    line-height:1.15;
    text-align:center;
    white-space:normal;
  }
  .subheader-nav a::after{display:none}
  .site-search-form{
    grid-column:1 / -1;
    width:100%;
    margin:0;
  }
  .site-search-input{
    height:42px;
  }
  .hero-copy h1{
    font-size:clamp(2.05rem, 9vw, 3.5rem);
    letter-spacing:-.02em;
  }
  .feature-card,.contact-card,.policy-card,.cta-card{padding:20px}
  .footer-nav{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:8px;
  }
  .footer-nav a{
    padding:8px 6px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    background:rgba(255,255,255,.03);
    font-size:.86rem;
    line-height:1.15;
  }
  .footer-nav a::after,.footer-sep{display:none}
  .footer-brand{align-items:center}
  .footer-media{white-space:normal}
}
@media (max-width: 600px){
  .container{width:min(calc(100% - 1.5rem), var(--max))}
  .site-header .container{padding-inline:.75rem}
  .header-inner{align-items:center;min-height:0;padding:10px 0}
  .brand{padding-right:0;gap:10px}
  .brand img{width:58px;height:58px;border-radius:14px}
  .brand-title{
    max-width:100%;
    line-height:0;
  }
  .brand-title .header-logo{
    width:min(300px, calc(100vw - 1.5rem));
  }
  .subheader-nav-inner,.footer-nav{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .hero-copy h1,.section-title{hyphens:auto}
  .lead,.section-copy,.page-hero p{font-size:1rem}
  .hero-panel{padding:14px}
  .hero-panel .logo-frame{border-radius:18px;padding:12px}
  .stat{border-radius:14px;padding:12px}
  .legal-list li{
    padding:76px 18px 18px;
    border-radius:16px;
  }
  .legal-list li::before{
    left:18px;
    top:18px;
  }
  .step{
    padding-left:0;
    padding-top:64px;
  }
  .step::before{
    top:0;
  }
  blockquote{
    padding:18px;
    border-radius:0 14px 14px 0;
  }
  .footer-brand{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-brand img{
    width:58px;
    height:58px;
    border-radius:14px;
  }
  .cta-row .btn,.hero-actions .btn,.content-challenge-actions .btn,.investigation-overview-actions .btn{width:100%}
  .content-challenge-actions,.investigation-overview-actions{justify-content:stretch}
  .contact-item{padding:12px}
}
@media (max-width: 420px){
  .brand-title{
    line-height:0;
  }
  .brand-title .header-logo{
    width:min(260px, calc(100vw - 1.5rem));
  }
  .subheader-nav a,.footer-nav a{
    font-size:.8rem;
    min-height:36px;
    padding-inline:4px;
  }
  .section{padding:44px 0}
  .page-hero{padding:34px 0 18px}
}
