
:root{
  --navy:#0F2E4F;
  --navy-2:#163B63;
  --orange:#E88426;
  --bg:#ffffff;
  --muted:#6b7a8a;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(15,46,79,.12);
  --radius:16px;
  --container:1100px;
  --header-offset:120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--navy);
  background:var(--bg);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 14px; border-radius:10px;
}
.skip-link:focus{left:10px; z-index:9999}

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  height:120px;
  padding:0;
  display:flex;
  align-items:center;
  transition:background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled{
  background:rgba(15,46,79,.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  height:100%;
}





.site-header .header-inner{
  width:100%;
  max-width:none;
  justify-content:flex-start;
  padding:0 48px;
}
.site-header .nav{
  margin-left:auto;
  justify-content:flex-end;
}

.brand{
  display:flex;
  align-items:center;
  height:100%;
}
.brand-logo{
  height:96px;
  width:auto;
  object-fit:contain;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:800;
  letter-spacing:.2px;
  color:#fff;
}
.nav a{opacity:.95}
.nav a:hover{opacity:1; text-decoration:underline; text-underline-offset:6px}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:0;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:#fff;
  border-radius:2px;
}

.mobile-nav{
  display:none;
  padding:14px 20px 18px;
  background:rgba(15,46,79,.75);
  backdrop-filter: blur(10px);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  color:#fff;
  font-weight:800;
  border-top:1px solid rgba(255,255,255,.12);
}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(15,46,79,.85) 0%, rgba(15,46,79,.55) 32%, rgba(15,46,79,0) 70%),
    url("/assets/images/hero-1920.jpg");
  background-size:cover;
  background-position:center right;
  transform:scale(1.02);
}
.hero-content{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  padding-top:calc(var(--header-offset) + 40px);
}
.hero-title{
  color:#fff;
  max-width:720px;
  
}
.hero-line{
  font-size:64px;
  font-weight:300;
  letter-spacing:.2px;
}
.hero-line-1{margin-bottom:10px}
.hero-line-2{font-weight:300}
.hero-title .accent{color:var(--orange); font-weight:700}
.hero-title .light{font-weight:300}
.hero-underline{
  margin-top:18px;
  width:520px;
  max-width:80%;
  height:6px;
  border-radius:99px;
  background:var(--orange);
  transform:skewX(-10deg);
  opacity:.95;
}

.section{
  padding:86px 0;

  scroll-margin-top: calc(var(--header-offset) + 18px);
}
.section-alt{
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 70%);
}
.section-title{
  text-align:center;
  font-size:44px;
  margin:0 0 18px;
  font-weight:800;
}
.section-subtitle{
  text-align:center;
  color:var(--muted);
  margin:0 0 34px;
  font-weight:600;
}

.card-grid{
  display:grid;
  gap:22px;
}
.card-grid.three{grid-template-columns:repeat(3, 1fr)}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px 24px;
  border:1px solid rgba(15,46,79,.06);
}
.card h3{margin:10px 0 10px; font-size:22px}
.card p{margin:0; color:var(--muted)}
.card-icon{
  width:48px; height:48px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(232,132,38,.12);
  color:var(--navy);
}
.card-icon svg{width:26px; height:26px}

.founder .founder-media{display:flex; justify-content:flex-end}
.founder-photo{
  width:84px; height:84px;
  border-radius:20px;
  background:rgba(15,46,79,.06);
  display:grid; place-items:center;
  color:var(--navy);
}
.founder-photo svg{width:54px; height:54px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round}

.card-grid.resources{
  grid-template-columns:repeat(4, 1fr);
}
.resource-card{
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,46,79,.06);
  display:flex;
  flex-direction:column;
}
.resource-card{transition:transform .14s ease, box-shadow .14s ease}
.resource-card:hover{transform:translateY(-3px); box-shadow:0 16px 40px rgba(15,46,79,.16)}
.resource-card:focus-within{outline:3px solid rgba(232,132,38,.35); outline-offset:4px}

.resource-card img{
  height:160px;
  width:100%;
  object-fit:cover;
}
.resource-body{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.resource-body h3{
  margin:0;
  font-size:18px;
  font-weight:800;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(15,46,79,.18);
  background:#fff;
  font-weight:800;
  color:var(--navy);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 10px 24px rgba(15,46,79,.12)}
.btn:active{transform:translateY(0)}

.btn-primary{
  background:var(--navy);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}
.btn-primary:hover{background:var(--navy-2)}

.cta{
  border-radius:24px;
  padding:28px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:linear-gradient(90deg, rgba(15,46,79,.08), rgba(232,132,38,.10));
  border:1px solid rgba(15,46,79,.10);

  box-shadow:0 12px 34px rgba(15,46,79,.10);
}
.cta h2{margin:0 0 6px; font-size:34px}
.cta p{margin:0; color:var(--muted); font-weight:600}

.contact{
  text-align:center;
}
.contact-card{
  margin:26px auto 0;
  max-width:520px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,46,79,.08);
  box-shadow:var(--shadow);
  justify-content:center;
}
.contact-icon{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(15,46,79,.06);
  color:var(--navy);
}
.contact-icon svg{width:22px; height:22px}
.contact-label{font-weight:800; color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.14em}
.contact-email{font-size:20px; font-weight:900}
.contact-email:hover{text-decoration:underline; text-underline-offset:6px}

.footer{
  margin-top:46px;
  color:rgba(15,46,79,.65);
  font-weight:700;
}

/* Responsive */
@media (max-width: 980px){
  body{--header-offset:92px}
  .card-grid.three{grid-template-columns:1fr}
  .card-grid.resources{grid-template-columns:repeat(2, 1fr)}
  .hero-line{font-size:52px}
  .cta{flex-direction:column; align-items:flex-start}
}

@media (max-width: 760px){
  body{--header-offset:92px}
  .nav{display:none}
  .nav-toggle{display:block}
  .mobile-nav{display:block}
  .hero-bg{background-position:center right}
  .hero-title{transform:none}
  .hero-line{font-size:42px}
  .section-title{font-size:36px}
  .resource-card img{height:150px}
}

@media (max-width: 520px){
  .site-header{height:92px}

  body{--header-offset:92px}
  .card-grid.resources{grid-template-columns:1fr}
  .brand-logo{
  height:100%;
  max-height:120px;
  width:auto;
  max-width: 520px;
  object-fit: contain;
  display:block;
}
  .hero-line{font-size:36px}
}


.btn:focus-visible{outline:3px solid rgba(232,132,38,.45); outline-offset:3px}
