  :root {
    color-scheme: dark;
    --navy: #121b32;
    --navy-2: #192642;
  --gold: #8b651f;
    --gold-light: #d7bb79;
    --paper: #ffffff;
    --line: rgba(255,255,255,.14);
    --text: #f8fafc;
    --muted: #c7cfdd;
    --ink: #17213a;
    --ink-muted: #667085;
  }

  * { box-sizing: border-box; }

  html, body { min-height: 100%; }

  body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background:
      linear-gradient(180deg, rgba(18,27,50,.78), rgba(18,27,50,.97)),
      radial-gradient(circle at 16% 0%, rgba(215,187,121,.26), transparent 28%),
      linear-gradient(135deg, #121b32 0%, #203254 100%);
  }

  body::before {
    position: fixed;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 80%);
  }

  .wrapper {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 42px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    min-height: 300px;
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
  }

  .brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .brand strong,
  .brand span {
    display: block;
  }

  .brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: .02em;
  }

  .brand span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
  }

  .hero p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-mark {
    display: grid;
    place-items: center;
    width: 174px;
    aspect-ratio: 1;
    border: 1px solid rgba(215,187,121,.36);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  }

  .hero-mark img {
    width: 92px;
    height: 138px;
    object-fit: contain;
    opacity: .9;
  }

  main {
    display: grid;
    gap: 30px;
    padding-top: 32px;
  }

  section {
    display: grid;
    gap: 14px;
  }

  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
  }

  h2 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
  }

  .section-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  a.card {
    position: relative;
    display: grid;
    min-height: 156px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    padding: 18px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }

  a.card::after {
    position: absolute;
    inset: auto 16px 16px auto;
    color: rgba(215,187,121,.7);
    content: "→";
    font-size: 20px;
    font-weight: 800;
  }

  a.card:hover {
    transform: translateY(-3px);
    border-color: rgba(215,187,121,.58);
    background: rgba(255,255,255,.12);
  }

  a.card .icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(215,187,121,.38);
    border-radius: 8px;
    color: var(--gold-light);
    font-size: 20px;
  }

  a.card .label {
    align-self: end;
    display: grid;
    gap: 7px;
    padding-right: 18px;
  }

  a.card .label strong {
    display: flex;
    align-items: flex-end;
    min-height: 42px;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
  }

  a.card .label span {
    display: block;
    min-height: 36px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
  }

  .wide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .external-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-mark { display: none; }
    .grid, .wide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .external-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .wrapper { width: min(100% - 28px, 1120px); padding-top: 22px; }
    .hero { padding-top: 10px; }
    .brand { margin-bottom: 28px; }
    .section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
    .grid, .wide-grid { grid-template-columns: 1fr; }
  }
