:root {
      --red: #fa0f00;
      --ink: #171411;
      --paper: #f5f1ea;
      --paper-strong: #fffdf8;
      --line: rgba(23, 20, 17, 0.11);
      --muted: #6c6259;
      --navy: #0f2740;
      --green: #146c43;
      --shadow: 0 22px 60px rgba(23, 20, 17, 0.1);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "DM Sans", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top right, rgba(250, 15, 0, 0.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(15, 39, 64, 0.08), transparent 35%),
        var(--paper);
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .shell {
      max-width: 1120px;
      margin: 0 auto;
      padding: 36px 24px 64px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 48px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--red);
      color: white;
      display: grid;
      place-items: center;
      font-size: 12px;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(20, 108, 67, 0.1);
      border: 1px solid rgba(20, 108, 67, 0.2);
      color: var(--green);
      font-size: 13px;
      font-weight: 600;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: currentColor;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 26px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .hero-card,
    .info-card,
    .nav-card {
      background: var(--paper-strong);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card {
      padding: 42px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto -10% -30% auto;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(250, 15, 0, 0.14), transparent 68%);
      pointer-events: none;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 16px;
    }

    h1 {
      margin: 0 0 16px;
      font-family: "Playfair Display", serif;
      font-size: clamp(46px, 7vw, 82px);
      line-height: 0.96;
      letter-spacing: -0.04em;
    }

    .hero-copy {
      max-width: 42rem;
      font-size: 18px;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
    }

    .button:hover {
      transform: translateY(-1px);
      opacity: 0.94;
    }

    .button.primary {
      background: var(--red);
      color: white;
    }

    .button.secondary {
      border-color: var(--line);
      background: white;
    }

    .info-card {
      padding: 28px;
      background:
        linear-gradient(180deg, rgba(15, 39, 64, 0.97), rgba(15, 39, 64, 0.92)),
        var(--navy);
      color: white;
    }

    .info-title {
      font-family: "Playfair Display", serif;
      font-size: 34px;
      line-height: 1.05;
      margin: 0 0 14px;
    }

    .info-body {
      color: rgba(255, 255, 255, 0.72);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .info-list {
      display: grid;
      gap: 12px;
    }

    .info-list div {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 14px;
      line-height: 1.55;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .nav-card {
      padding: 26px;
      display: flex;
      flex-direction: column;
      min-height: 260px;
    }

    .nav-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 700;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .nav-title {
      font-size: 28px;
      line-height: 1.05;
      font-family: "Playfair Display", serif;
      margin: 0 0 12px;
    }

    .nav-body {
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
      margin-bottom: 20px;
      flex: 1;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--red);
      font-weight: 700;
      font-size: 14px;
    }

    .footer {
      margin-top: 24px;
      color: var(--muted);
      font-size: 13px;
    }

    @media (max-width: 920px) {
      .hero {
        grid-template-columns: 1fr;
      }

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

      .hero-card,
      .info-card,
      .nav-card {
        border-radius: 22px;
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding: 24px 16px 48px;
      }

      .topbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
      }

      .hero-card,
      .info-card,
      .nav-card {
        padding: 22px;
      }

      .hero-copy {
        font-size: 16px;
      }
    }
