/* Shared stylesheet for the programme landing pages.
   One file rather than a copy inside every page: these four pages differ only
   in their words, and a colour or spacing change that has to be made four times
   is a colour or spacing change that will end up made twice. Variables and
   component names match index.html so the pages stay visually part of the site. */
:root{--navy:#1e3a5f;--navy-deep:#16293f;--navy-soft:#2c4d75;--gold:#bf9540;--gold-dark:#8f6d2b;--ink:#1b2436;--muted:#66718a;--bg:#f7f9fc;--line:#e6eaf2;--ok:#2c7a4b;--bad:#b4472e}
*{box-sizing:border-box;margin:0;padding:0}
body{font:16px/1.62 -apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:Georgia,"Times New Roman",serif;letter-spacing:-.01em;color:var(--navy)}
a{color:var(--navy);text-underline-offset:3px}
.wrap{max-width:960px;margin:0 auto;padding:0 22px}

.topbar{background:var(--navy-deep)}
.topbar .wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 22px}
.brand{display:flex;align-items:center;gap:10px;color:#fff;text-decoration:none;font-weight:800;font-size:19px}
.brand .mark{width:30px;height:30px;border-radius:8px;background:var(--gold);display:grid;place-items:center}
.brand .mark svg{width:18px;height:18px}
.topnav{display:flex;gap:22px}
.topnav a{color:#c3cde3;text-decoration:none;font-size:14px;font-weight:600}
.topnav a:hover,.topnav a.on{color:#fff}

header.hero{background:radial-gradient(1200px 520px at 74% -12%,rgba(255,255,255,.10),transparent 62%),linear-gradient(180deg,var(--navy),var(--navy-deep));color:#fff;padding:54px 0 58px}
.kicker{display:inline-block;background:rgba(200,162,75,.14);border:1px solid rgba(200,162,75,.4);color:#f0dfb4;border-radius:999px;padding:6px 15px;font-size:12.5px;font-weight:600;letter-spacing:.4px;margin-bottom:20px}
header.hero h1{color:#fff;font-size:39px;line-height:1.13;font-weight:600;max-width:760px}
header.hero .sub{margin-top:18px;font-size:18px;color:#d6deee;max-width:720px}
.hero-facts{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.hero-facts span{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:6px 14px;font-size:13.5px;color:#e6ecf8}
.cta-row{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-top:28px}
.cta{background:var(--gold);color:var(--navy);text-decoration:none;font-weight:800;font-size:15.5px;border-radius:10px;padding:13px 24px;display:inline-block}
.cta:hover{background:#d8b45f}
.cta-sub{color:#b9c5dc;font-size:14px}
.cta-alt{color:#e6ecf8;font-size:14.5px;font-weight:600}

main section{margin:50px 0}
h2{font-size:28px;font-weight:600;margin-bottom:10px}
.lead{color:var(--muted);max-width:760px;margin-bottom:22px}
p+p{margin-top:14px}
.prose p{color:var(--ink);max-width:800px}
.prose p+p{margin-top:14px}

.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:22px}
.card h3{font-size:17px;margin-bottom:8px;font-weight:600}
.card p,.card li{color:var(--muted);font-size:14.5px}
.card ul{padding-left:19px;margin-top:8px}
.card li+li{margin-top:6px}

.checks{background:#fff;border:1px solid var(--line);border-radius:14px;padding:8px 4px}
.checks li{list-style:none;display:flex;gap:13px;padding:15px 20px;border-bottom:1px solid var(--line);color:var(--ink);font-size:15px}
.checks li:last-child{border-bottom:0}
.checks li::before{content:"";flex:0 0 8px;height:8px;border-radius:50%;background:var(--gold);margin-top:8px}

.note{background:#fff;border:1px solid var(--line);border-left:4px solid var(--navy);border-radius:0 12px 12px 0;padding:18px 20px;margin-top:20px}
.note b{color:var(--navy)}
.note p{color:var(--muted);font-size:14.5px}

.pricebox{background:var(--navy);color:#fff;border-radius:16px;padding:28px 30px;display:flex;flex-wrap:wrap;gap:22px;align-items:center;justify-content:space-between}
.pricebox h2{color:#fff;margin-bottom:6px}
.pricebox p{color:#c9d4e8;font-size:14.5px;max-width:520px}
.pricebox .amount{font-family:Georgia,serif;font-size:38px;font-weight:600;color:var(--gold);line-height:1}

details{background:#fff;border:1px solid var(--line);border-radius:12px;padding:15px 18px;margin-bottom:10px}
details summary{cursor:pointer;font-weight:700;color:var(--navy);font-size:15.5px}
details p{color:var(--muted);font-size:14.5px;margin-top:10px}

footer{border-top:1px solid var(--line);padding:26px 0 40px;color:var(--muted);font-size:13.5px;margin-top:20px}
footer a{color:var(--muted)}
.crumbs{font-size:13.5px;color:var(--muted);margin:18px 0 -18px}
.crumbs a{color:var(--muted)}

@media (max-width:640px){
  /* Four nav items do not fit beside the wordmark on a 390px screen, and the
     overflow pushed the whole page sideways. The secondary links are all
     reachable from the footer; the one that earns its place here is the CTA. */
  .topnav .nav-sec{display:none}
}
@media (max-width:760px){
  header.hero h1{font-size:30px}
  header.hero{padding:40px 0 44px}
  .grid{grid-template-columns:1fr}
  h2{font-size:24px}
  .topnav{gap:14px}
  .topnav a{font-size:13px}
  .pricebox{padding:22px}
  .pricebox .amount{font-size:32px}
}
