    *, *::before, *::after {
      box-sizing: border-box; margin: 0; padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    :root {
      --navy:      #0B2447;
      --navy-mid:  #134074;
      --blue:      #1565C0;
      --sky:       #39A2DB;
      --white:     #FFFFFF;
      --off-white: #F4F7FB;
      --slate:     #7A8CA0;
      --text:      #1A2530;
      --border:    #D0DCE8;
      --amber:     #F5A623;
      --amber-deep:#E8730C;
      --alert:     #E23B3B;
      --nav-h:     60px;
      --safe-l:    env(safe-area-inset-left, 0px);
      --safe-r:    env(safe-area-inset-right, 0px);
      --safe-b:    env(safe-area-inset-bottom, 0px);
      --safe-t:    env(safe-area-inset-top, 0px);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 12px);
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }
    body {
      font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
      color: var(--text); background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overscroll-behavior-y: none;
    }
    img { max-width: 100%; display: block; }

    /* ─────────────── NAV (mobile-first) ─────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(11,36,71,0.97);
      -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      height: var(--nav-h);
      padding: 0 max(18px, var(--safe-l)) 0 max(18px, var(--safe-l));
      padding-top: var(--safe-t);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
    .nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
    .nav-logo-text {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-weight: 700; font-size: 17px; color: var(--white); line-height: 1.05;
      white-space: nowrap;
    }
    .nav-logo-text span {
      display: block; font-size: 9px; font-weight: 400;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky);
      overflow: hidden; text-overflow: ellipsis; max-width: 190px;
    }

    /* desktop links hidden on mobile */
    .nav-links { display: none; }
    .nav-cta {
      display: none;
      background: var(--amber); color: var(--navy); font-weight: 700; font-size: 14px;
      min-height: 40px; padding: 0 18px; border-radius: 4px; border: none;
      cursor: pointer; transition: background 0.2s; font-family: inherit;
    }
    .nav-cta:hover { background: #ffbf47; }

    /* hamburger */
    .nav-toggle {
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 44px; height: 44px; background: transparent; border: none;
      cursor: pointer; flex-shrink: 0; margin-right: -8px;
    }
    .nav-toggle span {
      display: block; width: 22px; height: 2px; background: var(--white);
      border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile slide-down menu */
    .mobile-menu {
      position: fixed; top: calc(var(--nav-h) + var(--safe-t)); left: 0; right: 0; z-index: 190;
      background: rgba(11,36,71,0.99);
      -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255,255,255,0.08);
      transform: translateY(-12px); opacity: 0; pointer-events: none;
      transition: transform 0.25s ease, opacity 0.25s ease;
      padding: 8px max(18px, var(--safe-l)) calc(16px + var(--safe-b)) max(18px, var(--safe-l));
      max-height: calc(100vh - var(--nav-h) - var(--safe-t)); overflow-y: auto;
    }
    .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .mobile-menu a {
      display: flex; align-items: center; min-height: 52px;
      font-size: 17px; color: rgba(255,255,255,0.85); text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-menu a:last-of-type { border-bottom: none; }
    .mobile-menu .btn-primary { width: 100%; text-align: center; margin-top: 14px; justify-content: center; }

    /* ─────────────── HERO ─────────────── */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0d3a6b 100%);
      padding: calc(var(--nav-h) + var(--safe-t) + 40px) max(20px, var(--safe-l)) 52px max(20px, var(--safe-l));
    }
    .hero-slides { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center 30%;
      opacity: 0; transform: scale(1.02); transition: opacity 1.6s ease;
      will-change: opacity, transform;
    }
    .hero-slide.active { opacity: 0.24; animation: kenburns 8s ease-out forwards; }
    @keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
    .hero-canvas { position: absolute; inset: 0; pointer-events: none; }
    .hero-inner { position: relative; z-index: 1; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--sky); margin-bottom: 18px;
    }
    .hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--sky); border-radius: 2px; flex-shrink: 0; }

    .hero h1 {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 800;
      font-size: clamp(42px, 12vw, 80px); line-height: 0.96; color: var(--white);
      letter-spacing: -0.01em; margin-bottom: 22px;
    }
    .hero h1 em { font-style: normal; color: var(--sky); }
    .hw { display: inline-block; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .hw.visible { opacity: 1; transform: translateY(0); }

    .hero-body {
      font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.82);
      max-width: 520px; margin-bottom: 30px;
    }
    .hero-actions { display: flex; flex-direction: column; gap: 12px; }

    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--amber); color: var(--navy); font-weight: 800; font-size: 16px;
      min-height: 50px; padding: 0 26px; border-radius: 4px; text-decoration: none;
      border: none; cursor: pointer; transition: background 0.2s, transform 0.1s; font-family: inherit;
    }
    .btn-primary:hover { background: #ffbf47; }
    .btn-primary:active { transform: scale(0.98); }
    .btn-ghost {
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent; color: var(--white); font-weight: 600; font-size: 16px;
      min-height: 50px; padding: 0 26px; border-radius: 4px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
      transition: border-color 0.2s, background 0.2s; font-family: inherit;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
    .btn-ghost:active { background: rgba(255,255,255,0.1); }

    /* ── Hero countdown (signature element, first in view) ── */
    .hero-countdown {
      position: relative; z-index: 1;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px; padding: 18px 18px 20px; margin-bottom: 28px;
      -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
      opacity: 0; transform: translateY(16px);
      animation: hcIn 0.6s ease 0.1s forwards;
    }
    @keyframes hcIn { to { opacity: 1; transform: translateY(0); } }

    .hc-flag {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--amber); margin-bottom: 16px;
    }
    .hc-pulse {
      width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(245,166,35,0.7); animation: pulse 1.8s ease-out infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(245,166,35,0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
      100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
    }

    .hc-units { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; }
    .hc-unit {
      flex: 1; text-align: center;
      background: rgba(255,255,255,0.05); border-radius: 10px; padding: 12px 4px 9px;
    }
    .hc-unit.is-days { background: rgba(245,166,35,0.14); }
    .hc-num {
      display: block;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 800;
      font-size: clamp(34px, 11vw, 52px); line-height: 0.9; color: var(--white);
      font-variant-numeric: tabular-nums; font-feature-settings: "tnum";
    }
    .hc-unit.is-days .hc-num { color: var(--amber); }
    .hc-lbl { display: block; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 5px; }
    .hc-sep {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 700;
      font-size: clamp(24px, 7vw, 34px); color: rgba(255,255,255,0.28); line-height: 1; padding-top: 14px;
      animation: blink 1.1s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

    .hc-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-top: 18px; }
    .hc-progress-bar {
      height: 100%; width: 0%; border-radius: 4px;
      background: linear-gradient(90deg, var(--amber), var(--amber-deep));
      transition: width 1.1s ease, background 0.4s ease;
    }
    .hc-progress-note { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 9px; }
    .hc-progress-note strong { color: var(--amber); font-weight: 700; }

    /* ── Sticky urgency strip (slides in on scroll) ── */
    .sticky-countdown {
      position: fixed; left: 0; right: 0; z-index: 150;
      top: calc(var(--nav-h) + var(--safe-t));
      display: flex; align-items: center; gap: 10px;
      padding: 9px max(16px, var(--safe-l));
      background: var(--amber); color: var(--navy);
      transform: translateY(-130%); transition: transform 0.3s ease;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }
    .sticky-countdown.show { transform: translateY(0); }
    .sc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink: 0; animation: pulse-navy 1.8s ease-out infinite; }
    @keyframes pulse-navy {
      0% { box-shadow: 0 0 0 0 rgba(11,36,71,0.5); }
      70% { box-shadow: 0 0 0 8px rgba(11,36,71,0); }
      100% { box-shadow: 0 0 0 0 rgba(11,36,71,0); }
    }
    .sc-text { flex: 1; font-size: 13px; font-weight: 500; line-height: 1.3; }
    .sc-text strong { font-weight: 800; font-variant-numeric: tabular-nums; }
    .sc-cta {
      flex-shrink: 0; background: var(--navy); color: var(--white);
      font-family: inherit; font-weight: 700; font-size: 13px;
      min-height: 36px; padding: 0 16px; border: none; border-radius: 4px; cursor: pointer;
    }
    .sc-cta:active { transform: scale(0.97); }

    /* ─────────────── WEL BANNER ─────────────── */
    .wel-banner {
      background: var(--blue); color: var(--white);
      padding: 16px max(20px, var(--safe-l));
      display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    }
    .wel-badge {
      background: rgba(255,255,255,0.16); border-radius: 4px; font-size: 11px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px;
    }
    .wel-text { font-size: 15px; line-height: 1.5; }
    .wel-text strong { font-weight: 600; }
    .wel-link { display: inline-flex; align-items: center; min-height: 32px; font-size: 14px; color: #cfeafe; text-decoration: underline; }

    /* ─────────────── SECTIONS ─────────────── */
    section { padding: 56px max(20px, var(--safe-l)); }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
    .section-heading {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: clamp(32px, 8vw, 50px); font-weight: 800; color: var(--navy);
      line-height: 1.05; margin-bottom: 18px;
    }
    .section-body { font-size: 16px; line-height: 1.7; color: #3d5166; max-width: 640px; margin-bottom: 34px; }

    /* WHAT WE DO */
    .pillars-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
    .pillar { background: var(--off-white); padding: 28px 24px; border-top: 3px solid transparent; transition: border-color 0.25s; }
    .pillar:active, .pillar:hover { border-color: var(--sky); }
    .pillar-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .pillar-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .pillar h3 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .pillar p { font-size: 15px; line-height: 1.6; color: #3d5166; }

    /* HUMAN IMPACT */
    .impact-section { background: var(--off-white); }
    .impact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
    .impact-image { border-radius: 8px; overflow: hidden; height: 260px; }
    .impact-image img { width: 100%; height: 100%; object-fit: cover; }
    .impact-copy p { font-size: 15px; line-height: 1.75; color: #3d5166; margin-bottom: 18px; }
    .impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
    .impact-stat { border-left: 3px solid var(--sky); padding-left: 14px; }
    .impact-stat-num { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1; }
    .impact-stat-label { font-size: 12px; color: var(--slate); margin-top: 4px; line-height: 1.4; }

    /* PHOTO BAND (single, consolidated) */
    .photo-band { display: grid; grid-template-columns: 1fr; gap: 3px; }
    .photo-item { overflow: hidden; position: relative; height: 200px; }
    .photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .photo-item:hover img { transform: scale(1.04); }
    .photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px 14px; background: linear-gradient(to top, rgba(11,36,71,0.88), transparent); color: white; font-size: 14px; font-weight: 500; }

    /* WHY JOIN */
    .why-section { background: var(--off-white); }
    .reasons-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .reason { padding: 24px 22px; background: var(--white); border-radius: 4px; border: 1px solid var(--border); }
    .reason h3 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .reason p { font-size: 14px; line-height: 1.6; color: #3d5166; }

    /* RESEARCH */
    .research-block { background: var(--navy-mid); border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 1fr; }
    .research-text { padding: 34px 26px; }
    .research-text .section-eyebrow { color: var(--sky); }
    .research-text h2 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 12px; }
    .research-text p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
    .research-list { list-style: none; }
    .research-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 11px; }
    .research-list li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .research-visual { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: center; justify-content: center; }
    .research-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
    .research-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,58,107,0.5), rgba(21,101,192,0.35)); }
    .report-mock { background: var(--white); border-radius: 6px; width: 170px; padding: 22px 18px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative; z-index: 1; margin: 34px 0; }
    .report-mock-bar { height: 7px; background: var(--blue); border-radius: 2px; margin-bottom: 14px; }
    .report-mock-title { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 8px; }
    .report-mock-sub { font-size: 10px; color: var(--slate); line-height: 1.5; }
    .report-mock-logo { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 10px; font-weight: 700; color: var(--navy); }

    /* ENROL */
    .enrol-section { background: var(--off-white); }
    .enrol-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
    .enrol-copy h2 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.05; margin-bottom: 12px; }
    .enrol-copy p { font-size: 15px; line-height: 1.7; color: #3d5166; margin-bottom: 20px; }
    .enrol-perks { list-style: none; }
    .enrol-perks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #3d5166; margin-bottom: 12px; }
    .perk-dot { width: 20px; height: 20px; background: var(--sky); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
    .perk-dot::after { content: ''; width: 6px; height: 6px; background: white; border-radius: 50%; }

    .enrol-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px 22px calc(28px + var(--safe-b)); }
    .enrol-form-wrap h3 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 25px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
    .form-sub { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 12px 14px;
      font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
      font-family: inherit; border: 1.5px solid var(--border); border-radius: 6px;
      background: var(--white); color: var(--text); transition: border-color 0.2s;
      -webkit-appearance: none; appearance: none; min-height: 48px;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8CA0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
    }
    .form-group textarea { min-height: 84px; resize: vertical; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); }
    .form-check { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; line-height: 1.5; color: #3d5166; margin-bottom: 20px; }
    .form-check input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: var(--blue); cursor: pointer; }
    .form-check label { cursor: pointer; }
    .btn-submit { width: 100%; background: var(--blue); color: var(--white); font-weight: 700; font-size: 16px; min-height: 52px; padding: 0 14px; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s, transform 0.1s; font-family: inherit; }
    .btn-submit:hover { background: #1976D2; }
    .btn-submit:active { transform: scale(0.99); }
    .form-success { display: none; text-align: center; padding: 24px 0; }
    .form-success-icon { font-size: 42px; margin-bottom: 12px; }
    .form-success h4 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 25px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .form-success p { font-size: 15px; color: #3d5166; }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 34px max(20px, var(--safe-l)) calc(28px + var(--safe-b));
      display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    }
    .footer-brand { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); }
    .footer-brand span { display: block; font-family: inherit; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); margin-top: 2px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
    footer a { display: inline-flex; align-items: center; min-height: 40px; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    footer a:hover { color: var(--white); }

    /* ─────────────── TABLET / DESKTOP ─────────────── */
    @media (min-width: 768px) {
      :root { --nav-h: 64px; }
      nav { padding-left: max(48px, var(--safe-l)); padding-right: max(48px, var(--safe-r)); }
      .nav-toggle, .mobile-menu { display: none !important; }
      .nav-links { display: flex; list-style: none; gap: 30px; }
      .nav-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
      .nav-links a:hover { color: var(--white); }
      .nav-cta { display: inline-flex; align-items: center; }
      .nav-logo-text { font-size: 18px; }
      .nav-logo-text span { font-size: 11px; letter-spacing: 0.1em; max-width: none; }

      .hero {
        padding: calc(var(--nav-h) + 72px) max(48px, var(--safe-l)) 80px;
        min-height: 100vh; display: flex; align-items: center;
      }
      .hero-inner { width: 100%; max-width: 760px; margin: 0 auto; }
      .hero-text { max-width: 620px; }
      .hero h1 { font-size: clamp(56px, 5.5vw, 82px); }
      .hero-body { font-size: 17px; }
      .hero-actions { flex-direction: row; flex-wrap: wrap; }
      .btn-primary, .btn-ghost { min-height: 52px; }
      .hero-countdown { padding: 22px 24px 24px; margin-bottom: 34px; }
      .hc-num { font-size: clamp(46px, 4vw, 60px); }
      .hc-lbl { font-size: 10px; }
      .sc-text { font-size: 14px; }
      .sticky-countdown { padding: 11px max(48px, var(--safe-l)); gap: 14px; }

      .wel-banner { flex-direction: row; align-items: center; gap: 16px; padding: 18px max(48px, var(--safe-l)); }
      .wel-text { flex: 1; }
      .wel-link { margin-left: auto; white-space: nowrap; }

      section { padding: 88px max(48px, var(--safe-l)); }
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
      .impact-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
      .impact-image { height: 420px; }
      .photo-band { grid-template-columns: 1.4fr 1fr 1fr; height: 380px; gap: 4px; }
      .photo-item { height: auto; }
      .reasons-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .research-block { grid-template-columns: 1fr 1fr; }
      .research-text { padding: 46px 42px; }
      .research-text h2 { font-size: 36px; }
      .enrol-grid { grid-template-columns: 1fr 1.15fr; gap: 64px; }
      .enrol-copy h2 { font-size: 42px; }
      .enrol-form-wrap { padding: 38px 34px; }
      .form-row { grid-template-columns: 1fr 1fr; gap: 14px; }
      footer { flex-direction: row; align-items: center; justify-content: space-between; padding: 44px max(48px, var(--safe-l)); }
    }

    @media (min-width: 1080px) {
      .hero h1 { font-size: clamp(64px, 5vw, 84px); }
    }

    /* focus visibility */
    a:focus-visible, button:focus-visible, input:focus-visible,
    select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--sky); outline-offset: 2px; border-radius: 4px;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
      .hw { opacity: 1 !important; transform: none !important; }
      .hero-countdown { opacity: 1 !important; transform: none !important; }
      .hero-slide.active { opacity: 0.24 !important; transform: scale(1.04) !important; }
    }

    /* ─────────────── FLOATING JOIN BUTTON ─────────────── */
    .join-fab {
      position: fixed; z-index: 160; bottom: calc(16px + var(--safe-b));
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--white); color: var(--navy); text-decoration: none;
      border: none; border-radius: 999px; cursor: pointer; font-family: inherit;
      padding: 5px 14px 5px 5px; box-shadow: 0 8px 24px rgba(11,36,71,0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
      left: max(12px, var(--safe-l));
    }
    .join-fab:hover { box-shadow: 0 10px 30px rgba(11,36,71,0.34); }
    .join-fab:active { transform: scale(0.97); }
    .join-fab.hidden { opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none; }
    .call-fab-avatar { width: 40px; height: 40px; border-radius: 50%; display: block; flex-shrink: 0; }
    .call-fab-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.14; max-width: 90px; }
    .call-fab-text b { font-size: 12.5px; font-weight: 800; }
    .call-fab-text small { display: none; font-size: 11px; color: var(--slate); font-weight: 500; }
    .call-fab-ring {
      position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
      pointer-events: none;
    }
    .join-fab .call-fab-ring { animation: pulse-blue 2.2s ease-out infinite; }
    @keyframes pulse-blue {
      0%   { box-shadow: 0 0 0 0 rgba(57,162,219,0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(57,162,219,0); }
      100% { box-shadow: 0 0 0 0 rgba(57,162,219,0); }
    }

    @media (min-width: 768px) {
      .join-fab { bottom: 24px; padding: 6px 18px 6px 6px; gap: 10px; left: 24px; }
      .call-fab-avatar { width: 44px; height: 44px; }
      .call-fab-ring { width: 44px; height: 44px; }
      .call-fab-text { max-width: none; }
      .call-fab-text b { font-size: 14px; white-space: nowrap; }
      .call-fab-text small { display: block; white-space: nowrap; }
    }
  
