:root{
  --navy:#1c3766;
  --coral:#e0531e;
  --paper:#fbf9f6;
  --ink:#1f2430;
  --muted:#5b6478;
}
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  .tnp-page-content {
    margin:0;
    background:var(--paper);
    font-family:'Segoe UI', Arial, sans-serif;
    color:var(--ink);
  }

  /* ================= NAV ================= */
  .tnp-nav{
    position:sticky;
    top:0;
    z-index:100;
    background:var(--navy);
    box-shadow:0 4px 16px rgba(28,55,102,0.18);
  }
  .tnp-nav-inner{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 24px;
    flex-wrap:wrap;
    gap:10px;
  }
  .tnp-brand{
    color:#fff;
    font-weight:800;
    font-size:15px;
    letter-spacing:0.04em;
  }
  .tnp-brand span{color:var(--coral);}
  .tnp-links{
    display:flex;
    gap:4px;
    flex-wrap:wrap;
  }
  .tnp-links a{
    color:#dfe5f1;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    padding:8px 14px;
    border-radius:30px;
    transition:background 0.2s, color 0.2s;
  }
  .tnp-links a:hover{
    background:rgba(255,255,255,0.12);
    color:#fff;
  }

  /* ================= HERO / INTRO ================= */
  .hero{
    background:
      radial-gradient(circle at 18% 22%, rgba(224,83,30,0.16), transparent 42%),
      radial-gradient(circle at 84% 78%, rgba(255,255,255,0.08), transparent 40%),
      linear-gradient(135deg, var(--navy), #11254c);
    color:#fff;
    padding:90px 24px 80px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .hero-eyebrow{
    color:var(--coral);
    font-weight:800;
    letter-spacing:0.2em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:18px;
  }
  .hero-title{
    font-size:44px;
    font-weight:800;
    margin:0 0 18px;
    line-height:1.2;
    color:#fff;
  }
  .hero-title span{color:#fff;}
  .hero-sub{
    max-width:760px;
    margin:0 auto 40px;
    font-size:16px;
    line-height:1.75;
    color:#dfe5f1;
  }
  .hero-stats{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:44px;
  }
  .hero-stat{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:14px;
    padding:18px 26px;
    min-width:140px;
  }
  .hero-stat .num{
    font-size:26px;
    font-weight:800;
    color:#fff;
  }
  .hero-stat .lbl{
    font-size:11.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#b9c3da;
    margin-top:4px;
  }
  .hero-cards{
    max-width:1080px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .hero-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    padding:22px 18px;
    text-align:left;
    text-decoration:none;
    transition:transform 0.2s, background 0.2s;
  }
  .hero-card:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.12);
  }
  .hero-card .ic{
    width:38px; height:38px;
    border-radius:10px;
    background:var(--coral);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:800; font-size:15px;
    margin-bottom:14px;
  }
  .hero-card .ti{
    color:#fff;
    font-weight:700;
    font-size:14.5px;
    margin-bottom:6px;
  }
  .hero-card .de{
    color:#c2cade;
    font-size:12.5px;
    line-height:1.55;
  }

  @media (max-width: 900px){
    .hero-cards{grid-template-columns:1fr 1fr;}
  }
  @media (max-width: 600px){
    .hero-title{font-size:30px;}
    .hero-cards{grid-template-columns:1fr;}
    .tnp-links{justify-content:center; width:100%;}
  }

  /* Section divider label used between embedded pages */
  .tnp-section-anchor{
    scroll-margin-top:72px;
  }

  footer.tnp-footer{
    background:var(--navy);
    color:#b9c3da;
    text-align:center;
    font-size:12.5px;
    padding:26px 20px;
    margin-top:20px;
  }
  footer.tnp-footer b{color:#fff;}


  .ab-wrap{
    max-width:1080px;
    margin:0 auto;
    padding:56px 24px 20px;
  }
  .ab-eyebrow{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    letter-spacing:0.18em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .ab-title{
    text-align:center;
    color:var(--navy);
    font-size:34px;
    font-weight:800;
    margin:0 0 26px;
  }
  .ab-lede{
    color:var(--muted);
    font-size:15.5px;
    line-height:1.8;
    margin-bottom:18px;
  }
  .ab-head-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #e7e4dd;
    border-radius:16px;
    padding:22px 26px;
    box-shadow:0 6px 18px rgba(28,55,102,0.06);
    margin:30px 0 44px;
  }
  .ab-head-photo{
    width:76px; height:76px;
    border-radius:50%;
    object-fit:cover;
    flex:0 0 auto;
    border:3px solid var(--paper);
    box-shadow:0 4px 12px rgba(28,55,102,0.15);
  }
  .ab-head-name{
    color:var(--navy);
    font-weight:800;
    font-size:17px;
  }
  .ab-head-role{
    color:var(--coral);
    font-weight:600;
    font-size:13px;
    margin:2px 0 8px;
  }
  .ab-head-contact{
    color:var(--muted);
    font-size:12.5px;
    line-height:1.6;
  }
  .ab-head-contact a{color:var(--navy); text-decoration:none; font-weight:600;}
  .ab-resp{
    list-style:none;
    margin:0 0 46px;
    padding:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .ab-resp li{
    background:var(--paper);
    border:1px solid #ece8e1;
    border-radius:12px;
    padding:18px 18px 16px;
    font-size:13px;
    color:var(--muted);
    line-height:1.6;
  }
  .ab-resp li b{display:block; color:var(--navy); font-size:13.5px; margin-bottom:4px;}
  .ab-subhead{
    color:var(--navy);
    font-size:22px;
    font-weight:800;
    margin:50px 0 16px;
    padding-top:6px;
    border-top:1px solid #ece8e1;
  }
  .ab-subhead:first-of-type{border-top:none; margin-top:0;}
  .ab-two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    margin-bottom:10px;
  }
  .ab-card{
    background:#fff;
    border:1px solid #e7e4dd;
    border-radius:14px;
    padding:22px;
    box-shadow:0 6px 18px rgba(28,55,102,0.05);
  }
  .ab-card h3{
    color:var(--coral);
    font-size:13px;
    font-weight:800;
    letter-spacing:0.06em;
    text-transform:uppercase;
    margin:0 0 10px;
  }
  .ab-card p{
    color:var(--muted);
    font-size:13.5px;
    line-height:1.7;
    margin:0;
  }
  .ab-card ul{
    margin:8px 0 0;
    padding-left:18px;
    color:var(--muted);
    font-size:13.5px;
    line-height:1.75;
  }
  .ab-body p{
    color:var(--muted);
    font-size:14.5px;
    line-height:1.8;
    margin:0 0 16px;
  }
  .ab-pillars{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:24px;
  }
  .ab-pillar{
    background:linear-gradient(160deg, #fff, var(--paper));
    border:1px solid #ece8e1;
    border-radius:14px;
    padding:20px 18px;
  }
  .ab-pillar .tag{
    color:#fff;
    background:var(--navy);
    display:inline-block;
    font-size:11px;
    font-weight:800;
    letter-spacing:0.04em;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:10px;
  }
  .ab-pillar p{
    color:var(--muted);
    font-size:13px;
    line-height:1.65;
    margin:0;
  }
  @media (max-width:900px){
    .ab-resp{grid-template-columns:1fr 1fr;}
    .ab-two-col{grid-template-columns:1fr;}
    .ab-pillars{grid-template-columns:1fr;}
  }
  @media (max-width:600px){
    .ab-title{font-size:26px;}
    .ab-resp{grid-template-columns:1fr;}
    .ab-head-card{flex-direction:column; text-align:center;}
  }


  .team-page{ padding:50px 24px 80px; }
  .team-page .wrap { max-width: 1000px; margin: 0 auto; }

  .team-page .header {
    background: #1c3766;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  .team-page .lead {
    background: #fdf2ec;
    padding: 14px 24px;
    border-left: 5px solid #e0531e;
    font-size: 14px;
  }
  .team-page .lead .name { font-weight: 700; color: #1c3766; font-size: 15px; }
  .team-page .lead .role { color: #555; margin: 2px 0 4px; }
  .team-page .lead a { color: #e0531e; font-size: 13px; text-decoration: none; }

  .team-page .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: #fff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  }

  .team-page .item {
    background: #fdf2ec;
    border-radius: 8px;
    padding: 14px 18px;
    border-left: 4px solid #e0531e;
    position: relative;
  }
  .team-page .item .sno {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    color: #e0531e;
  }
  .team-page .item .name { font-weight: 700; color: #1c3766; font-size: 15px; padding-right: 26px; }
  .team-page .item .role { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 0.5px; margin: 3px 0 7px; }
  .team-page .item a { font-size: 13px; color: #1c3766; text-decoration: none; }
  .team-page .item a:hover { text-decoration: underline; }

  .coord-header{
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin: 46px 0 16px;
    padding-top: 30px;
    border-top: 1px solid #ece8e1;
  }
  .coord-table{
    background:#fff;
    border:1px solid #e7e4dd;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(28,55,102,0.05);
  }
  .coord-row{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1.4fr;
    gap:10px;
    padding:12px 20px;
    font-size:13px;
    color:var(--muted);
    border-bottom:1px solid #f0ede7;
  }
  .coord-row:last-child{border-bottom:none;}
  .coord-row div:first-child{color:var(--navy); font-weight:700;}
  .coord-head-row{
    background:var(--navy);
    color:#fff;
    font-weight:800;
    font-size:11.5px;
    text-transform:uppercase;
    letter-spacing:0.05em;
  }
  .coord-head-row div{color:#fff;}
  @media (max-width: 700px) {
    .team-page .grid { grid-template-columns: 1fr; }
    .coord-row{grid-template-columns:1fr; gap:2px;}
    .coord-head-row{display:none;}
    .coord-row div:first-child{padding-top:4px;}
  }


  .fw-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:56px 24px 80px;
  }
  .fw-eyebrow{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    letter-spacing:0.18em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .fw-title{
    text-align:center;
    color:var(--navy);
    font-size:34px;
    font-weight:800;
    margin:0 0 16px;
  }
  .fw-sub{
    text-align:center;
    color:var(--muted);
    font-size:15.5px;
    max-width:760px;
    margin:0 auto 48px;
    line-height:1.7;
  }
  .fw-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  .fw-card{
    background:#fff;
    border:1px solid #e7e4dd;
    border-left:6px solid var(--year-color);
    border-radius:14px;
    padding:30px 30px 28px;
    box-shadow:0 6px 22px rgba(28,55,102,0.06);
    position:relative;
    overflow:hidden;
  }
  .fw-card::after{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:140px;
    height:140px;
    border-radius:50%;
    background:var(--year-color);
    opacity:0.07;
  }
  .fw-card-head{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:6px;
  }
  .fw-year-badge{
    flex:0 0 auto;
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--year-color);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:800;
    line-height:1;
    font-size:13px;
    letter-spacing:0.04em;
  }
  .fw-card-titles{flex:1;}
  .fw-stage-label{
    color:var(--year-color);
    font-size:12px;
    font-weight:700;
    letter-spacing:0.12em;
    text-transform:uppercase;
  }
  .fw-stage-name{
    color:var(--navy);
    font-size:21px;
    font-weight:800;
    margin-top:2px;
  }
  .fw-card-intro{
    color:var(--muted);
    font-size:14.5px;
    line-height:1.65;
    margin:16px 0 20px;
  }
  .fw-section-label{
    font-size:11px;
    font-weight:800;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--year-color);
    margin-bottom:10px;
  }
  .fw-items{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:18px;
  }
  .fw-item{
    background:var(--paper);
    border:1px solid #ece8e1;
    border-radius:10px;
    padding:12px 14px;
  }
  .fw-item-name{
    font-weight:700;
    font-size:13.5px;
    color:var(--ink);
    margin-bottom:4px;
  }
  .fw-item-desc{
    font-size:12.5px;
    color:var(--muted);
    line-height:1.5;
  }
  .fw-outcome{
    display:flex;
    gap:10px;
    align-items:flex-start;
    background:linear-gradient(135deg, rgba(28,55,102,0.05), rgba(224,83,30,0.06));
    border-radius:10px;
    padding:12px 14px;
  }
  .fw-outcome-label{
    flex:0 0 auto;
    font-size:11px;
    font-weight:800;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--coral);
    padding-top:1px;
  }
  .fw-outcome-text{
    font-size:13px;
    color:var(--navy);
    font-weight:600;
    line-height:1.55;
  }
  @media (max-width: 760px){
    .fw-grid{grid-template-columns:1fr;}
    .fw-items{grid-template-columns:1fr;}
    .fw-title{font-size:26px;}
  }


  .ps-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:56px 24px 80px;
  }
  .ps-eyebrow{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    letter-spacing:0.18em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .ps-title{
    text-align:center;
    color:var(--navy);
    font-size:32px;
    font-weight:800;
    margin:0 0 14px;
  }
  .ps-sub{
    text-align:center;
    color:var(--muted);
    font-size:15px;
    max-width:720px;
    margin:0 auto 50px;
    line-height:1.7;
  }
  .ps-banner{
    background:linear-gradient(120deg, var(--navy), #284a85);
    color:#fff;
    text-align:center;
    font-weight:700;
    font-size:18px;
    letter-spacing:0.04em;
    padding:14px 20px;
    border-radius:40px;
    max-width:560px;
    margin:0 auto 36px;
    box-shadow:0 8px 22px rgba(28,55,102,0.18);
  }
  .ps-section{margin-bottom:70px;}
  .ps-barlabel{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    font-size:15px;
    margin-bottom:28px;
  }
  .ps-bars{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:36px;
    height:280px;
    padding:0 20px;
  }
  .ps-bar-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:80px;
  }
  .ps-bar{
    width:54px;
    border-radius:8px 8px 4px 4px;
    box-shadow:0 8px 18px rgba(0,0,0,0.12);
    display:flex;
    align-items:flex-start;
    justify-content:center;
    color:#fff;
    font-weight:800;
    font-size:13px;
    padding-top:8px;
  }
  .ps-bar-year{
    margin-top:10px;
    font-size:12.5px;
    font-weight:700;
    color:var(--navy);
    text-align:center;
  }
  .ps-note{
    text-align:center;
    color:var(--muted);
    font-size:12.5px;
    margin-top:18px;
    line-height:1.6;
  }
  @media (max-width: 760px){
    .ps-title{font-size:24px;}
    .ps-bars{gap:18px;}
    .ps-bar-col{width:54px;}
    .ps-bar{width:38px; font-size:11px;}
  }


  .rec-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:56px 24px 80px;
  }
  .rec-eyebrow{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    letter-spacing:0.18em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .rec-title{
    text-align:center;
    color:var(--navy);
    font-size:34px;
    font-weight:800;
    margin:0 0 12px;
  }
  .rec-sub{
    text-align:center;
    color:var(--muted);
    font-size:15px;
    max-width:680px;
    margin:0 auto 28px;
    line-height:1.65;
  }
  .rec-stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px 16px;
    margin-bottom:46px;
  }
  .rec-stat-pill{
    background:var(--navy);
    color:#fff;
    padding:6px 18px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
  }
  .rec-stat-pill span{
    color:#ffcc00;
    font-size:15px;
  }
  .rec-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
    gap:18px;
  }
  .rec-card{
    background:#fff;
    border-radius:14px;
    padding:18px 14px 14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 12px rgba(28,55,102,0.09);
    border:1px solid #e8ecf4;
    transition:transform 0.2s, box-shadow 0.2s;
    gap:10px;
  }
  .rec-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(28,55,102,0.16);
    border-color:var(--coral);
  }
  .rec-img-wrap{
    height:56px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .rec-img-wrap img{
    max-height:56px;
    max-width:120px;
    object-fit:contain;
  }
  .rec-initials{
    width:48px; height:48px;
    border-radius:50%;
    color:#fff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .rec-card span{
    color:var(--navy);
    font-size:12.5px;
    font-weight:600;
    text-align:center;
    line-height:1.3;
  }
  .rec-note{
    text-align:center;
    margin-top:40px;
    color:var(--muted);
    font-size:12.5px;
  }
  .rec-note strong{color:var(--navy);}
  @media (max-width:600px){
    .rec-title{font-size:26px;}
  }


  .cp-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:56px 24px 80px;
  }
  .cp-eyebrow{
    text-align:center;
    color:var(--coral);
    font-weight:700;
    letter-spacing:0.18em;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .cp-title{
    text-align:center;
    color:var(--navy);
    font-size:34px;
    font-weight:800;
    margin:0 0 14px;
  }
  .cp-sub{
    text-align:center;
    color:var(--muted);
    font-size:15.5px;
    max-width:680px;
    margin:0 auto 46px;
    line-height:1.65;
  }
  .cp-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
  }
  .cp-card{
    background:#fff;
    border:1px solid #e7e4dd;
    border-radius:14px;
    padding:22px 22px 20px;
    box-shadow:0 6px 18px rgba(28,55,102,0.05);
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .cp-logo-slot{
    height:64px;
    border:1.5px dashed #d8d4cb;
    border-radius:10px;
    background:var(--paper);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#9aa1ad;
    font-size:11px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    font-weight:700;
  }
  .cp-name{
    color:var(--navy);
    font-size:16px;
    font-weight:800;
  }
  .cp-tag{
    color:var(--coral);
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.04em;
    text-transform:uppercase;
    margin-top:-8px;
  }
  .cp-desc{
    color:var(--muted);
    font-size:13px;
    line-height:1.55;
  }
  .cp-note{
    margin-top:40px;
    text-align:center;
    font-size:12.5px;
    color:#9aa1ad;
  }
  @media (max-width: 900px){
    .cp-grid{grid-template-columns:repeat(3,1fr);}
  }
  @media (max-width: 600px){
    .cp-grid{grid-template-columns:repeat(2,1fr);}
    .cp-title{font-size:26px;}
  }

.tnp-page-content { min-height: 60vh; }
