  :root{
    --red:#e31e24;
    --black:#111111;
    --ink:#1a1a1a;
    --muted:#5c5c5c;
    --bg:#ffffff;
    --panel:#f7f7f8;
    --border:#e7e7e9;
    --radius:14px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    color:var(--ink);
    background:var(--bg);
    line-height:1.6;
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1140px;margin:0 auto;padding:0 24px;}

  /* Header */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 0;
  }
  .logo img{height:38px;width:auto;}
  nav.links{display:flex; gap:32px;}
  nav.links a{
    text-decoration:none; font-weight:600; font-size:14.5px;
    color:var(--black); letter-spacing:.2px;
    position:relative; padding:4px 0;
  }
  nav.links a::after{
    content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
    background:var(--red); transition:width .2s ease;
  }
  nav.links a:hover::after{width:100%;}
  .menu-toggle{display:none;background:none;border:none;font-size:26px;cursor:pointer;color:var(--black);}
  .social-links{display:flex; gap:10px; align-items:center;}
  .social-links a{
    width:34px; height:34px; border-radius:50%; border:1.5px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    color:var(--black); text-decoration:none; transition:all .15s ease;
  }
  .social-links a:hover{background:var(--red); border-color:var(--red); color:#fff;}
  .social-links svg{width:16px; height:16px; fill:currentColor;}

  /* Hero */
  .hero{
    background:
      radial-gradient(1100px 480px at 85% -10%, rgba(227,30,36,0.10), transparent 60%),
      linear-gradient(180deg,#fff 0%, #fcfcfd 100%);
    border-bottom:1px solid var(--border);
    padding:76px 0 64px;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    background:#fdeceb; color:var(--red); font-weight:700; font-size:13px;
    padding:6px 14px; border-radius:999px; letter-spacing:.3px;
    margin-bottom:22px;
  }
  .eyebrow::before{content:"●"; font-size:8px;}
  h1{
    font-size:clamp(34px,5vw,54px);
    line-height:1.08; margin:0 0 20px; letter-spacing:-0.5px;
    max-width:820px;
  }
  h1 span{color:var(--red);}
  .hero p.lead{
    font-size:19px; color:var(--muted); max-width:640px; margin:0 0 32px;
  }
  .hero-cta{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-block; padding:13px 26px; border-radius:8px;
    font-weight:700; font-size:15px; text-decoration:none;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary{background:var(--red); color:#fff; box-shadow:0 8px 20px rgba(227,30,36,0.25);}
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 12px 26px rgba(227,30,36,0.32);}
  .btn-ghost{background:#fff; color:var(--black); border:1.5px solid var(--border);}
  .btn-ghost:hover{border-color:var(--black);}

  /* Stat strip */
  .stats{
    background:var(--black);
    padding:40px 0;
  }
  .stats .grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;
  }
  .stat-num{
    font-size:clamp(26px,3vw,36px); font-weight:800; color:#fff; letter-spacing:-.5px;
  }
  .stat-num em{color:var(--red); font-style:normal;}
  .stat-label{color:#b8b8b8; font-size:13.5px; margin-top:6px;}

  /* Section generic */
  section{padding:76px 0;}
  section.alt{background:var(--panel); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
  .section-head{max-width:680px; margin:0 0 44px;}
  .kicker{
    color:var(--red); font-weight:700; font-size:13px; letter-spacing:1.2px;
    text-transform:uppercase; margin-bottom:10px; display:block;
  }
  h2{font-size:clamp(26px,3.4vw,36px); margin:0 0 14px; letter-spacing:-.3px;}
  .section-head p{color:var(--muted); font-size:16.5px; margin:0;}

  /* About grid */
  .about-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:start;}
  .about-grid p{color:var(--muted); font-size:16px; margin:0 0 16px;}
  .fact-card{
    background:#fff; border:1px solid var(--border); border-radius:var(--radius);
    padding:22px 24px; margin-bottom:14px;
  }
  .fact-card h4{margin:0 0 6px; font-size:15.5px;}
  .fact-card p{margin:0; font-size:14.5px; color:var(--muted);}
  .fact-card .tag{
    display:inline-block; background:#fdeceb; color:var(--red); font-size:11.5px;
    font-weight:700; padding:3px 10px; border-radius:999px; margin-bottom:10px;
    letter-spacing:.3px; text-transform:uppercase;
  }

  /* Pillars */
  .pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .pillar{
    background:#fff; border:1px solid var(--border); border-radius:var(--radius);
    padding:30px 26px; transition:box-shadow .2s ease, transform .2s ease;
  }
  .pillar:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(0,0,0,0.06);}
  .pillar .icon{
    width:46px; height:46px; border-radius:10px; background:#fdeceb;
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
    color:var(--red); font-size:22px; font-weight:800;
  }
  .pillar h3{margin:0 0 10px; font-size:18px;}
  .pillar p{margin:0; color:var(--muted); font-size:15px;}

  /* Timeline */
  .timeline{border-left:2px solid var(--border); margin-left:6px; padding-left:32px;}
  .tl-item{position:relative; padding-bottom:36px;}
  .tl-item:last-child{padding-bottom:0;}
  .tl-item::before{
    content:""; position:absolute; left:-38px; top:4px;
    width:12px; height:12px; border-radius:50%;
    background:var(--red); border:3px solid #fdeceb;
  }
  .tl-year{font-weight:800; color:var(--red); font-size:14px; letter-spacing:.5px;}
  .tl-item h4{margin:6px 0 6px; font-size:17px;}
  .tl-item p{margin:0; color:var(--muted); font-size:15px; max-width:640px;}

  /* Two column challenges/opportunities */
  .cols2{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
  .col-card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:28px;}
  .col-card h3{margin:0 0 16px; font-size:19px; display:flex; align-items:center; gap:10px;}
  .col-card h3 .dot{width:10px;height:10px;border-radius:50%;}
  .col-card.challenge h3 .dot{background:var(--black);}
  .col-card.opportunity h3 .dot{background:var(--red);}
  .col-card ul{margin:0; padding-left:20px; color:var(--muted); font-size:15px;}
  .col-card li{margin-bottom:10px;}

  /* Players */
  .players{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .player-card{
    background:#fff; border:1px solid var(--border); border-radius:var(--radius);
    padding:24px; text-align:left;
  }
  .player-card .badge{
    display:inline-block; font-size:11px; font-weight:700; letter-spacing:.4px;
    text-transform:uppercase; color:#fff; background:var(--black);
    padding:3px 10px; border-radius:6px; margin-bottom:12px;
  }
  .player-card h4{margin:0 0 8px; font-size:16.5px;}
  .player-card p{margin:0; color:var(--muted); font-size:14.5px;}

  /* Coming soon strip */
  .coming-soon{
    background:linear-gradient(120deg, var(--black), #262626);
    border-radius:var(--radius); padding:44px; color:#fff;
    display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  }
  .coming-soon h3{margin:0 0 8px; font-size:22px;}
  .coming-soon p{margin:0; color:#c9c9c9; font-size:15px; max-width:480px;}
  .coming-soon-badges{display:flex; gap:12px; flex-wrap:wrap;}
  .cs-badge{
    background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
    padding:10px 18px; border-radius:8px; font-size:13.5px; font-weight:600;
    white-space:nowrap;
  }
  .cs-badge em{color:var(--red); font-style:normal;}

  /* Footer */
  footer{background:var(--black); color:#d9d9d9; padding:50px 0 26px;}
  .footer-top{display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,0.1);}
  .as-seen-on{background:var(--panel); border-bottom:1px solid var(--border);}
  .as-seen-on-row{
    display:flex; align-items:center; justify-content:center; gap:10px;
    flex-wrap:wrap; padding:16px 24px; text-align:center;
  }
  .aso-label{
    font-size:11.5px; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
    color:#9c9c9c;
  }
  .aso-link{
    font-size:14.5px; font-weight:600; color:var(--ink); text-decoration:none;
    border-bottom:1px solid transparent; transition:border-color .15s ease;
  }
  .aso-link:hover{border-color:var(--red);}
  .aso-link em{font-style:italic; color:var(--muted); font-weight:500;}

  .footer-brand-name{
    font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; letter-spacing:-.3px;
  }
  .footer-brand-name span{color:var(--red);}
  .footer-brand p{color:#9c9c9c; font-size:14px; max-width:320px; margin:0;}
  .footer-cols{display:flex; gap:64px; flex-wrap:wrap;}
  .footer-col h5{color:#fff; font-size:13.5px; letter-spacing:.5px; text-transform:uppercase; margin:0 0 14px;}
  .footer-col a{display:block; color:#b3b3b3; text-decoration:none; font-size:14.5px; margin-bottom:10px;}
  .footer-col a:hover{color:#fff;}
  .footer-bottom{display:flex; justify-content:space-between; padding-top:22px; font-size:13px; color:#8a8a8a; flex-wrap:wrap; gap:10px;}
  footer .social-links a{border-color:rgba(255,255,255,0.18); color:#d9d9d9;}
  footer .social-links a:hover{background:var(--red); border-color:var(--red); color:#fff;}

  /* Newsletter */
  .newsletter{
    background:#fff; border:1px solid var(--border); border-radius:var(--radius);
    padding:44px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  }
  .newsletter-copy{max-width:440px;}
  .newsletter-copy h3{margin:0 0 8px; font-size:22px;}
  .newsletter-copy p{margin:0; color:var(--muted); font-size:15px;}
  .newsletter-form{display:flex; gap:10px; flex-wrap:wrap; flex:1; min-width:280px; justify-content:flex-end;}
  .newsletter-form input[type=email]{
    flex:1; min-width:220px; padding:13px 16px; border-radius:8px;
    border:1.5px solid var(--border); font-size:15px; font-family:inherit;
  }
  .newsletter-form input[type=email]:focus{outline:none; border-color:var(--red);}
  .newsletter-note{width:100%; font-size:12.5px; color:#9c9c9c; margin-top:8px; text-align:right;}
  .newsletter-success{display:none; color:#1a7d3a; font-size:14.5px; font-weight:600; margin-top:8px;}
  .newsletter-form.submitted input, .newsletter-form.submitted button{display:none;}
  .newsletter-form.submitted .newsletter-success{display:block;}

  /* News grid + cards (homepage preview + news.html) */
  .news-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:32px;
  }
  .news-card{
    display:flex; flex-direction:column; background:#fff; border:1px solid var(--border);
    border-radius:var(--radius); padding:24px; text-decoration:none; color:inherit;
    transition:box-shadow .2s ease, transform .2s ease; scroll-margin-top:100px;
  }
  .news-card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(0,0,0,0.07);}
  .news-tag{
    align-self:flex-start; font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase;
    background:#fdeceb; color:var(--red); padding:4px 10px; border-radius:999px; margin-bottom:12px;
  }
  .news-date{font-size:12.5px; color:#9c9c9c; margin-bottom:8px; display:block;}
  .news-card h4{margin:0 0 10px; font-size:17px; line-height:1.35;}
  .news-card h4 a{color:inherit; text-decoration:none;}
  .news-card h4 a:hover{color:var(--red);}
  .news-source{text-decoration:none;}
  .news-card p{margin:0 0 14px; font-size:14.5px; color:var(--muted); flex:1;}
  .news-source{font-size:12.5px; font-weight:700; color:var(--black);}
  .news-source::after{content:" →"; color:var(--red);}

  /* Individual article pages */
  .article-hero{padding:48px 0 8px;}
  .article-breadcrumb{font-size:13px; color:var(--muted); margin-bottom:18px;}
  .article-breadcrumb a{color:var(--muted); text-decoration:none;}
  .article-breadcrumb a:hover{color:var(--red);}
  .article-meta-row{
    display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:18px;
  }
  .article-title{font-size:clamp(28px,4vw,42px); line-height:1.15; margin:0 0 18px; max-width:820px;}
  .article-dek{font-size:18px; color:var(--muted); max-width:680px; margin:0 0 28px;}
  .article-body{max-width:680px;}
  .article-body p{font-size:16.5px; line-height:1.75; color:var(--ink); margin:0 0 22px;}
  .article-body h2{font-size:22px; margin:36px 0 14px;}
  .article-body blockquote{
    margin:28px 0; padding:4px 0 4px 22px; border-left:3px solid var(--red);
    font-size:18px; font-style:italic; color:var(--ink);
  }
  .article-sources{
    max-width:680px; margin-top:40px; padding-top:24px; border-top:1px solid var(--border);
  }
  .article-sources h3{font-size:14px; text-transform:uppercase; letter-spacing:.5px; color:var(--muted); margin:0 0 12px;}
  .article-sources ul{margin:0; padding:0; list-style:none;}
  .article-sources li{margin-bottom:8px; font-size:14.5px;}
  .article-sources a{color:var(--black); font-weight:600;}
  .article-share{max-width:680px; margin-top:32px; display:flex; gap:12px; align-items:center;}
  .article-related{margin-top:56px;}

  /* News page specific */
  .news-page-hero{padding:56px 0 32px;}
  .news-filters{display:flex; gap:10px; flex-wrap:wrap; margin:28px 0 8px;}
  .filter-btn{
    background:#fff; border:1.5px solid var(--border); color:var(--black);
    font-weight:600; font-size:13.5px; padding:8px 16px; border-radius:999px;
    cursor:pointer; transition:all .15s ease; text-decoration:none; display:inline-block;
  }
  .filter-btn:hover{border-color:var(--black);}
  .filter-btn.active{background:var(--red); border-color:var(--red); color:#fff;}
  .news-empty{color:var(--muted); font-size:15px; padding:40px 0; display:none;}

  @media (max-width:880px){
    nav.links{display:none;}
    .menu-toggle{display:block;}
    .about-grid, .cols2{grid-template-columns:1fr;}
    .pillars, .players, .news-grid{grid-template-columns:1fr 1fr;}
    .stats .grid{grid-template-columns:1fr 1fr;}
    .coming-soon{flex-direction:column; align-items:flex-start;}
  }
  @media (max-width:560px){
    .pillars, .players, .news-grid{grid-template-columns:1fr;}
  }


/* Multi-page additions */
nav.links a.active{color:var(--red);}
nav.links a.active::after{width:100%;}

.page-hero{padding:56px 0 40px;}
.page-hero .lead{max-width:700px;}

.service-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:32px;}
.service-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:26px 22px; text-align:left; text-decoration:none; color:inherit;
  transition:box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(0,0,0,0.06);}
.service-card .icon{
  width:44px; height:44px; border-radius:10px; background:#fdeceb;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  color:var(--red); font-size:20px; font-weight:800;
}
.service-card h3{margin:0 0 8px; font-size:16.5px;}
.service-card p{margin:0 0 12px; font-size:14px; color:var(--muted);}
.service-card .link{font-size:13px; font-weight:700; color:var(--black);}
.service-card .link::after{content:" →"; color:var(--red);}

.tiers{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.tier-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:32px 28px; display:flex; flex-direction:column;
}
.tier-card.featured{border-color:var(--red); box-shadow:0 16px 40px rgba(227,30,36,0.12); position:relative;}
.tier-featured-badge{
  position:absolute; top:-13px; left:28px; background:var(--red); color:#fff;
  font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase;
  padding:5px 12px; border-radius:999px;
}
.tier-card h3{margin:0 0 4px; font-size:19px;}
.tier-price{font-size:28px; font-weight:800; margin:8px 0 18px;}
.tier-price span{font-size:14px; font-weight:600; color:var(--muted);}
.tier-card ul{list-style:none; margin:0 0 24px; padding:0; flex:1;}
.tier-card li{
  font-size:14.5px; color:var(--muted); padding:9px 0; border-top:1px solid var(--border);
  padding-left:22px; position:relative;
}
.tier-card li:first-child{border-top:none;}
.tier-card li::before{content:"✓"; position:absolute; left:0; color:var(--red); font-weight:800;}

.value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.value-card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:28px;}
.value-card .icon{
  width:44px; height:44px; border-radius:10px; background:#fdeceb;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  color:var(--red); font-size:20px; font-weight:800;
}
.value-card h3{margin:0 0 8px; font-size:17px;}
.value-card p{margin:0; font-size:14.5px; color:var(--muted);}

.team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.team-card{text-align:center;}
.team-avatar{
  width:88px; height:88px; border-radius:50%; margin:0 auto 14px;
  background:linear-gradient(135deg,#fdeceb,#f3d4d3);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; font-weight:800; color:var(--red);
}
.team-card h4{margin:0 0 4px; font-size:15.5px;}
.team-card p{margin:0; font-size:13px; color:var(--muted);}

.job-list{display:flex; flex-direction:column; gap:16px;}
.job-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:22px 26px; display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.job-info h4{margin:0 0 6px; font-size:16.5px;}
.job-meta{font-size:13.5px; color:var(--muted);}
.job-meta span{margin-right:14px;}
.job-tag{
  display:inline-block; background:#fdeceb; color:var(--red); font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.4px; padding:4px 10px; border-radius:999px; margin-bottom:8px;
}
.jobs-note{
  background:var(--panel); border:1px dashed var(--border); border-radius:var(--radius);
  padding:22px 26px; font-size:14.5px; color:var(--muted); margin-top:24px;
}

/* Contact page */
.contact-wrap{display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start;}
.contact-info-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:30px;
}
.contact-info-card h3{margin:0 0 18px; font-size:19px;}
.contact-row{display:flex; gap:14px; align-items:flex-start; margin-bottom:18px;}
.contact-row .ci-icon{
  width:38px; height:38px; border-radius:10px; background:#fdeceb; color:var(--red);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px;
}
.contact-row div{font-size:14.5px; color:var(--muted); line-height:1.5;}
.contact-row strong{display:block; color:var(--ink); font-size:14.5px; margin-bottom:2px;}
.contact-form-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:32px;
}
.form-row{margin-bottom:18px;}
.form-row label{display:block; font-size:13.5px; font-weight:700; margin-bottom:7px;}
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:12px 14px; border-radius:8px; border:1.5px solid var(--border);
  font-size:14.5px; font-family:inherit; background:#fff;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{outline:none; border-color:var(--red);}
.form-row textarea{resize:vertical; min-height:120px;}
.form-success{
  display:none; background:#eaf7ee; border:1px solid #b7e3c4; color:#1a7d3a;
  padding:14px 18px; border-radius:8px; font-size:14.5px; font-weight:600; margin-top:16px;
}
#contact-form.submitted .form-row, #contact-form.submitted button[type=submit]{display:none;}
#contact-form.submitted .form-success{display:block;}

@media (max-width:880px){
  .service-grid, .tiers, .value-grid, .team-grid{grid-template-columns:1fr 1fr;}
  .contact-wrap{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .service-grid, .tiers, .value-grid, .team-grid{grid-template-columns:1fr;}
  .job-card{flex-direction:column; align-items:flex-start;}
}
