
:root {
      --navy: #0a1f3f;
      --navy-soft: #163d70;
      --sky: #dceffd;
      --sky-strong: #8fcdf7;
      --bg: #f5f9fd;
      --white: #ffffff;
      --text: #24384d;
      --muted: #627487;
      --border: rgba(10, 31, 63, 0.11);
      --shadow: 0 14px 35px rgba(10, 31, 63, 0.08);
      --radius: 22px;
      --max: 1180px;
      --transition: 0.3s ease;
    }

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

    body {
      margin: 0;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      word-wrap: break-word;
      transition: opacity ease-in 0.2s;
    }

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

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

    .hero {
        margin-top: 50px;
      padding: 3rem 0 2.5rem;
    }

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

    .triple-grid {
      display: grid;
      grid-template-columns: 1fr 0.82fr 1fr;
      gap: 1.2rem;
      align-items: stretch;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.2rem;
    }

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

    .eyebrow {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: var(--navy);
      background: rgba(143, 205, 247, 0.22);
      border: 1px solid rgba(22, 61, 112, 0.08);
    }

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

    h1 {
      font-size: clamp(2.3rem, 4vw, 4.1rem);
      max-width: 11ch;
    }

    h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
    h3 { font-size: 1.15rem; }

    p { margin: 0 0 1rem; }

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

    .panel,
    .card,
    .image-card,
    .video-card,
    .quote-block {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .panel,
    .card { padding: 1.7rem; }

    .panel:hover,
    .card:hover,
    .image-card:hover,
    .video-card:hover {
      transform: translateY(-4px);
    }

    .hero-media {
      display: grid;
      gap: 1rem;
      grid-template-rows: 1fr auto;
    }

    .image-card,
    .video-card {
      overflow: hidden;
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: 330px;
      object-fit: cover;
    }

    .middle-image img {
      min-height: 100%;
    }

    .video-card iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
    }

    .caption {
      padding: 0.9rem 1rem 1rem;
      color: var(--muted);
      font-size: 0.94rem;
      border-top: 1px solid rgba(10, 31, 63, 0.08);
    }

    .section-head {
      max-width: 74ch;
      margin-bottom: 1.5rem;
    }

    section { padding: 1.2rem 0 4rem; }

    .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), var(--navy-soft));
      color: var(--white);
    }

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

    .axis-card .thumb {
      margin-top: 1rem;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(10, 31, 63, 0.08);
    }

    .axis-card .thumb img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

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

    .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(143, 205, 247, 0.16);
    }

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

    .step-number {
      width: 38px;
      height: 38px;
      min-width: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-soft));
      color: var(--white);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .quote-block {
      padding: 1.5rem 1.7rem;
      margin-top: 1.5rem;
    }

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

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

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

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

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

    @media (max-width: 991px) {
      body {
        font-size: 14px;
        line-height: 1.45;
      }
    }