:root{
    --navy:#0A0F1A;
    --navy-2:#0F1626;
    --charcoal:#1B1F26;
    --white:#F7F6F2;
    --gold:#C7A35F;
    --sky:#8CA7BF;
    --line: rgba(247,246,242,0.12);
    --serif: 'Fraunces', serif;
    --sans: 'Inter', sans-serif;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--navy);
    color:var(--white);
    font-family:var(--sans);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
  }
  a{color:inherit;text-decoration:none;}
  img{display:block;width:100%;height:100%;object-fit:cover;}
  .eyebrow{
    font-family:var(--sans);
    font-size:11px;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:600;
  }
  h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.05;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 28px;}

  /* NAV */
  header{
    position:fixed;top:0;left:0;right:0;z-index:100;
    padding:22px 0;
    transition:background .4s ease, padding .4s ease, backdrop-filter .4s ease, border-color .4s ease;
    border-bottom:1px solid transparent;
  }
  header.solid{
    background:rgba(10,15,26,0.82);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  nav.wrap{display:flex;align-items:center;justify-content:space-between;}
  .brand{font-family:var(--serif);font-size:20px;letter-spacing:0.02em;}
  .brand strong{font-weight:500;}
  .navlinks{display:flex;gap:36px;font-size:13px;letter-spacing:0.04em;}
  .navlinks a{opacity:0.85;transition:opacity .2s;}
  .navlinks a:hover{opacity:1;}
  .nav-cta{
    font-size:12px;letter-spacing:0.08em;text-transform:uppercase;
    border:1px solid var(--gold);color:var(--gold);
    padding:10px 20px;border-radius:2px;
    transition:background .25s, color .25s;
  }
  .nav-cta:hover{background:var(--gold);color:var(--navy);}
  @media (max-width:860px){ .navlinks{display:none;} }

  /* HERO */
  .hero{
    position:relative;height:100vh;min-height:680px;
    display:flex;align-items:flex-end;
  }
  .hero-media{position:absolute;inset:0;z-index:0;}
  .hero-media img{filter:saturate(0.85) brightness(0.72);}
  .hero-media::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.5) 35%, rgba(10,15,26,0.97) 100%);
  }
  .hero-content{position:relative;z-index:1;padding-bottom:9vh;width:100%;}
  .hero-content .eyebrow{margin-bottom:22px;display:block;color:var(--white);opacity:0.85;}
  .hero-content h1{
    font-size:clamp(40px, 7vw, 84px);
    letter-spacing:-0.01em;
    max-width:820px;
    color:var(--white);
  }
  .hero-content h1 em{font-style:italic;color:var(--gold);}
  .hero-sub{
    margin-top:22px;font-size:16px;color:rgba(247,246,242,0.75);
    max-width:440px;line-height:1.6;font-weight:400;
  }
  .hero-ctas{display:flex;gap:18px;margin-top:44px;flex-wrap:wrap;}
  .btn{
    font-size:12.5px;letter-spacing:0.08em;text-transform:uppercase;
    padding:16px 30px;border-radius:2px;font-weight:600;
    transition:transform .25s ease, background .25s, color .25s, border-color .25s;
    display:inline-block;
  }
  .btn-primary{background:var(--gold);color:var(--navy);}
  .btn-primary:hover{transform:translateY(-2px);}
  .btn-ghost{border:1px solid rgba(247,246,242,0.35);color:var(--white);}
  .btn-ghost:hover{border-color:var(--white);}

  /* SECTION GENERIC */
  section{padding:120px 0;position:relative;}
  .section-head{max-width:640px;margin-bottom:64px;}
  .section-head .eyebrow{margin-bottom:18px;display:block;}
  .section-head h2{font-size:clamp(30px,4vw,46px);}
  .section-head p{margin-top:18px;color:rgba(247,246,242,0.68);font-size:16px;line-height:1.7;max-width:540px;}

  /* PATHS */
  .paths{background:var(--navy-2);}
  .path-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line);border:1px solid var(--line);}
  .path-card{background:var(--navy-2);padding:0;overflow:hidden;}
  .path-card-media{height:220px;overflow:hidden;}
  .path-card-media img{filter:saturate(0.9) brightness(0.92);}
  .path-card-body{padding:44px 48px 56px;}
  .path-card-body .eyebrow{display:block;margin-bottom:20px;}
  .path-card-body h3{font-size:30px;margin-bottom:16px;}
  .path-card-body p{color:rgba(247,246,242,0.68);line-height:1.7;font-size:15px;margin-bottom:32px;}
  .path-card-body a.link{
    font-size:12.5px;letter-spacing:0.06em;text-transform:uppercase;
    color:var(--gold);border-bottom:1px solid var(--gold);padding-bottom:4px;
  }
  @media (max-width:760px){ .path-grid{grid-template-columns:1fr;} }

  /* PILLARS (Why Pegasus) */
  .pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:48px;}
  .pillar{border-top:1px solid var(--line);padding-top:26px;}
  .pillar h3{font-size:20px;color:var(--sky);font-weight:500;margin-bottom:12px;font-family:var(--sans);letter-spacing:0.01em;}
  .pillar p{font-size:14.5px;line-height:1.75;color:rgba(247,246,242,0.65);}
  @media (max-width:760px){ .pillars{grid-template-columns:1fr;gap:36px;} }

  /* PREMIER ECOSYSTEM */
  .premier{background:var(--charcoal);}
  .premier-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);}
  .premier-item{background:var(--charcoal);padding:38px 30px;min-height:170px;display:flex;flex-direction:column;justify-content:space-between;}
  .premier-item .mark{font-family:var(--serif);font-size:15px;color:var(--gold);}
  .premier-item h4{font-family:var(--sans);font-size:16.5px;font-weight:500;margin-top:22px;}
  @media (max-width:760px){ .premier-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:480px){ .premier-grid{grid-template-columns:1fr;} }

  /* INTELLIGENCE CENTER - signature */
  .intel{background:var(--navy);}
  .intel-shell{
    border:1px solid var(--line);border-radius:6px;
    background:linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
    padding:6px;
  }
  .intel-topbar{display:flex;align-items:center;gap:8px;padding:14px 18px;border-bottom:1px solid var(--line);}
  .dot{width:8px;height:8px;border-radius:50%;background:rgba(247,246,242,0.18);}
  .intel-title{margin-left:10px;font-size:12px;letter-spacing:0.06em;color:rgba(247,246,242,0.55);}
  .intel-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:1px;
    background:var(--line);
  }
  .intel-card{background:var(--navy);padding:26px 24px;min-height:150px;display:flex;flex-direction:column;justify-content:space-between;}
  .intel-card .lbl{font-size:11px;letter-spacing:0.08em;text-transform:uppercase;color:rgba(247,246,242,0.45);}
  .intel-card .val{font-family:var(--serif);font-size:26px;margin-top:14px;}
  .intel-card .sub{font-size:12.5px;color:var(--sky);margin-top:6px;}
  @media (max-width:900px){ .intel-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:520px){ .intel-grid{grid-template-columns:1fr;} }

  /* FINAL CTA */
  .final{padding:140px 0;text-align:center;}
  .final h2{font-size:clamp(32px,5vw,54px);max-width:760px;margin:0 auto 40px;}
  .final-ctas{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;}

  footer{border-top:1px solid var(--line);padding:44px 0;}
  .footer-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;}
  .footer-row .brand{font-size:16px;}
  .footer-links{display:flex;gap:28px;font-size:12.5px;color:rgba(247,246,242,0.55);}

  .reveal{opacity:0;transform:translateY(18px);transition:opacity .8s ease, transform .8s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}

  :focus-visible{outline:2px solid var(--gold);outline-offset:3px;}
