
    :root {
      --navy: #081b36;
      --navy-soft: #123a69;
      --sky: #dff1ff;
      --sky-strong: #8ecfff;
      --ice: #f6fbff;
      --white: #ffffff;
      --text: #17314d;
      --muted: #5c7288;
      --border: rgba(8, 27, 54, 0.1);
      --shadow: 0 18px 45px rgba(8, 27, 54, 0.12);
      --shadow-strong: 0 26px 60px rgba(8, 27, 54, 0.18);
      --radius: 26px;
      --max: 1180px;
      --transition: 0.35s ease;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      line-height: 1.65;
      background:
        radial-gradient(circle at top left, rgba(142, 207, 255, 0.18), transparent 24%),
        radial-gradient(circle at 100% 18%, rgba(142, 207, 255, 0.10), transparent 18%),
        linear-gradient(180deg, #fbfdff 0%, #eef7ff 100%);
      overflow-x: hidden;
    }

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

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(255,255,255,0.84);
      border-bottom: 1px solid rgba(8, 27, 54, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 0.12rem;
    }

    .brand small {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      font-weight: 800;
    }

    .brand strong {
      font-size: 1.04rem;
      color: var(--navy);
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.94rem;
      color: var(--muted);
      font-weight: 600;
    }

    .nav-links a {
      position: relative;
      transition: var(--transition);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--sky-strong), var(--navy-soft));
      transition: var(--transition);
    }

    .nav-links a:hover { color: var(--navy); }
    .nav-links a:hover::after { width: 100%; }

    .hero {
      padding: 5.6rem 0 2.6rem;
    }

    .hero-grid,
    .split-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 1.4rem;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      background: rgba(142, 207, 255, 0.2);
      color: var(--navy);
      border: 1px solid rgba(18, 58, 105, 0.1);
      border-radius: 999px;
      padding: 0.45rem 0.85rem;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      margin-bottom: 1rem;
    }

    h1, h2, h3 {
      margin: 0 0 1rem;
      line-height: 1.14;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(2.2rem, 4vw, 4rem);
      max-width: 12ch;
    }

    h2 {
      font-size: clamp(1.7rem, 3vw, 2.45rem);
    }

    h3 {
      font-size: 1.18rem;
    }

    p { margin: 0 0 1rem; }

    .lead {
      font-size: 1.06rem;
      color: var(--muted);
    }

    .panel,
    .image-card,
    .card,
    .quote-block,
    .mini-card,
    .image-slot {
      background: rgba(255,255,255,0.92);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }

    .panel {
      padding: 1.9rem;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: var(--transition);
    }

    .panel::before,
    .card::before,
    .quote-block::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(142, 207, 255, 0.18), transparent 68%);
      pointer-events: none;
    }

    .panel::before {
      right: -70px;
      top: -65px;
    }

    .hero-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.3rem;
      border-radius: 999px;
      font-weight: 700;
      transition: var(--transition);
      box-shadow: var(--shadow);
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy), var(--navy-soft));
      color: var(--white);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-strong);
    }

    .media-column {
      display: grid;
      grid-template-rows: minmax(340px, 1fr) auto;
      gap: 1rem;
      height: 100%;
    }

    .image-card {
      overflow: hidden;
      position: relative;
      transition: var(--transition);
      min-height: 340px;
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s ease;
    }

    .image-card:hover img {
      transform: scale(1.04);
    }

    .image-slot-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .image-slot {
      min-height: 150px;
      border: 2px dashed rgba(18, 58, 105, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
      transition: var(--transition);
    }

    .image-slot:hover,
    .panel:hover,
    .card:hover,
    .mini-card:hover,
    .image-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-strong);
    }

    .slot-inner {
      display: grid;
      gap: 0.45rem;
      justify-items: center;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .slot-inner svg {
      width: 28px;
      height: 28px;
      stroke: var(--navy-soft);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    section {
      padding: 1.2rem 0 4rem;
    }

    .section-head {
      max-width: 72ch;
      margin-bottom: 1.6rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      align-items: stretch;
    }

    .icon-head {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    }

    .icon-badge {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--navy), #2a6da8);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(8, 27, 54, 0.16);
    }

    .icon-badge svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card {
      padding: 1.6rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card::before {
      right: -65px;
      bottom: -65px;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
      align-items: stretch;
    }

    .mini-card {
      padding: 1.15rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 118px;
    }

    .mini-card strong {
      display: block;
      color: var(--navy);
      line-height: 1.35;
    }

    .priority-title {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      margin-bottom: 1rem;
    }

    .number {
      width: 38px;
      height: 38px;
      min-width: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), #2a6da8);
      color: var(--white);
      font-weight: 800;
      font-size: 0.96rem;
      box-shadow: 0 10px 22px rgba(8, 27, 54, 0.18);
      margin-top: 0.05rem;
    }

    .priority-title h3 {
      margin: 0.18rem 0 0;
    }

    .list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: grid;
      gap: 0.78rem;
    }

    .list li {
      position: relative;
      padding-left: 1.2rem;
    }

    .list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sky-strong);
      box-shadow: 0 0 0 5px rgba(142, 207, 255, 0.16);
    }

    .card .image-slot {
      margin-top: auto;
      min-height: 130px;
    }

    .quote-block {
      padding: 1.55rem 1.7rem;
      margin-top: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .quote-block::before {
      right: 1rem;
      top: -1rem;
    }

    .quote-block p {
      margin: 0;
      color: var(--navy);
      font-size: 1.08rem;
      font-weight: 600;
      max-width: 64ch;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    footer {
      border-top: 1px solid rgba(8,27,54,0.08);
      padding: 1.4rem 0 2rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .split-grid,
      .grid-3,
      .mini-grid {
        grid-template-columns: 1fr;
      }

      .image-slot-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 760px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero {
        padding-top: 4.5rem;
      }

      .hero-actions,
      .nav-links,
      .image-slot-grid {
        width: 100%;
      }

      .image-slot-grid {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }
    }